post_push.yml: Fix an invalid YAML syntax

This commit is contained in:
Takashi Kokubun 2025-10-08 00:59:31 -07:00
parent a0e7341bfd
commit 949717efb1

View File

@ -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_') }}