Skip to content

Commit c17070c

Browse files
committed
fix(ci): use release bot token for SKILL.md auto-commit
Switch from getsentry/action-github-app-token with SENTRY_INTERNAL_APP to actions/create-github-app-token with SENTRY_RELEASE_BOT, matching the token flow used in release.yml.
1 parent 54e7123 commit c17070c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@ jobs:
4747
if: needs.changes.outputs.skill == 'true'
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: getsentry/action-github-app-token@d4b5da6c5e37703f8c3b3e43abb5705b46e159cc # v3.0.0
50+
- name: Get auth token
5151
id: token
52+
uses: actions/create-github-app-token@v2.2.1
5253
with:
53-
app_id: ${{ vars.SENTRY_INTERNAL_APP_ID }}
54-
private_key: ${{ secrets.SENTRY_INTERNAL_APP_PRIVATE_KEY }}
54+
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
55+
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
5556
- uses: actions/checkout@v4
5657
with:
5758
token: ${{ steps.token.outputs.token }}

0 commit comments

Comments
 (0)