From 9ae3e20953edc20d8e21075e13c877ae42f47fa2 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Wed, 8 Oct 2025 01:01:51 -0700 Subject: [PATCH] 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. --- .github/workflows/post_push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_') }}