summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2025-10-08 00:59:31 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2025-10-08 00:59:31 -0700
commit949717efb1de61dadfce7a0dde73ca72c417ac10 (patch)
tree9e445e8733ac42901738582074150f0c084ecf87
parenta0e7341bfd424010f31876e42ca2b553404b35fc (diff)
post_push.yml: Fix an invalid YAML syntax
-rw-r--r--.github/workflows/post_push.yml3
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_') }}