diff options
| author | Takashi Kokubun <takashi.kokubun@shopify.com> | 2025-10-08 01:10:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-08 01:10:05 -0700 |
| commit | a8f488482a60554515ab5f5e360e79f80d3fa344 (patch) | |
| tree | 51c37761fdb200fc1fe254609ed2c96c83b6f3cc | |
| parent | dcb66fcae7bc4b4b337ca1083dd1e125923ac74f (diff) | |
Backport fetch_changesets to ruby_3_3 (#14773)
| -rw-r--r-- | .github/workflows/post_push.yml | 7 |
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 |
