summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashi.kokubun@shopify.com>2025-10-08 01:10:14 -0700
committerGitHub <noreply@github.com>2025-10-08 01:10:14 -0700
commitb8802ae5a07ef13b1e9d473867f500feece3433e (patch)
tree2549c330979331c2d0a2aa71a81e2c5a2606137b
parent6dbf3d931304b2adb60f9cee0d1babc0ad018487 (diff)
Backport fetch_changesets to ruby_3_2 (#14774)
-rw-r--r--.github/workflows/post_push.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/post_push.yml b/.github/workflows/post_push.yml
index 9350806e31..f2bd38af5d 100644
--- a/.github/workflows/post_push.yml
+++ b/.github/workflows/post_push.yml
@@ -22,6 +22,13 @@ jobs:
RUBY_GIT_SYNC_PRIVATE_KEY: ${{ secrets.RUBY_GIT_SYNC_PRIVATE_KEY }}
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}" -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_') }}
+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: ./.github/actions/slack