diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2025-10-08 00:53:09 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2025-10-08 00:54:54 -0700 |
| commit | a0e7341bfd424010f31876e42ca2b553404b35fc (patch) | |
| tree | d5880989d8cdd2de878601e1bc9b5f59f18e3548 | |
| parent | ac01ac11f951336702b347c81855aa60ff27c177 (diff) | |
post_push.yml: Migrate fetch_changesets
from post-receive.sh
| -rw-r--r-- | .github/workflows/post_push.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/post_push.yml b/.github/workflows/post_push.yml index e252239c3f..d4b5cec68f 100644 --- a/.github/workflows/post_push.yml +++ b/.github/workflows/post_push.yml @@ -22,6 +22,12 @@ 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}" --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 with: fetch-depth: 500 # for notify-slack-commits |
