diff options
| -rw-r--r-- | .github/workflows/post_push.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/post_push.yml b/.github/workflows/post_push.yml index d4b5cec68f..7d76107d13 100644 --- a/.github/workflows/post_push.yml +++ b/.github/workflows/post_push.yml @@ -23,7 +23,8 @@ jobs: if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/ruby_') }} - name: Fetch changesets on bugs.ruby-lang.org - run: curl "https://bugs.ruby-lang.org/sys/fetch_changesets?key=${REDMINE_SYS_API_KEY}" --fail-with-body -w '* status: %{http_code}\n' + run: | + curl "https://bugs.ruby-lang.org/sys/fetch_changesets?key=${REDMINE_SYS_API_KEY}" --fail-with-body -w '* status: %{http_code}\n' env: REDMINE_SYS_API_KEY: ${{ secrets.REDMINE_SYS_API_KEY }} if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/ruby_') }} |
