diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2025-10-08 01:01:51 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2025-10-08 01:01:51 -0700 |
| commit | 9ae3e20953edc20d8e21075e13c877ae42f47fa2 (patch) | |
| tree | 17c3a1d261813bf89b3dd1eb114126b6bb24cb1e | |
| parent | 949717efb1de61dadfce7a0dde73ca72c417ac10 (diff) | |
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.
| -rw-r--r-- | .github/workflows/post_push.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/post_push.yml b/.github/workflows/post_push.yml index 7d76107d13..32d74f644e 100644 --- a/.github/workflows/post_push.yml +++ b/.github/workflows/post_push.yml @@ -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_') }} |
