push_push.yml: Suppress progress of requests

which also disables some error messages, but --fail-with-body -w
'%{http_code}' seems to show everything we need anyway.
This commit is contained in:
Takashi Kokubun 2025-10-08 01:01:51 -07:00
parent 949717efb1
commit 9ae3e20953

View File

@ -24,7 +24,7 @@ jobs:
- 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'
curl "https://bugs.ruby-lang.org/sys/fetch_changesets?key=${REDMINE_SYS_API_KEY}" -s --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_') }}