diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2025-10-08 00:59:31 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2025-10-08 00:59:31 -0700 |
| commit | 949717efb1de61dadfce7a0dde73ca72c417ac10 (patch) | |
| tree | 9e445e8733ac42901738582074150f0c084ecf87 | |
| parent | a0e7341bfd424010f31876e42ca2b553404b35fc (diff) | |
post_push.yml: Fix an invalid YAML syntax
| -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_') }} |
