Skip to content

Commit 3df84f2

Browse files
authored
Use correct token in release trigger workflow (#3125)
1 parent 554f411 commit 3df84f2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/trigger-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@ jobs:
1818
name: Trigger a release
1919
runs-on: ubuntu-latest
2020
env:
21-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
GITHUB_TOKEN: ${{ secrets.EXPO_BOT_PAT }}
2222
INPUT_VERSION: ${{ github.event.inputs.version }}
2323
INPUT_DRY_RUN: ${{ github.event.inputs.dry_run }}
2424
steps:
2525
- uses: actions/checkout@v4
2626
with:
2727
ref: main
2828
fetch-depth: 0
29+
token: ${{ secrets.EXPO_BOT_PAT }}
2930
- uses: actions/setup-node@v4
3031
with:
3132
node-version: 22

0 commit comments

Comments
 (0)