Skip to content

Commit

Permalink
fix: run actions in release PRs (#997)
Browse files Browse the repository at this point in the history
PRs created via Github actions bot cannot run Github actions.
https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow

We need a token with more permissions to trigger those actions for
release PRs
  • Loading branch information
Noroth authored Nov 25, 2024
1 parent f760706 commit a02320d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
steps:
- uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GH_TOKEN_RELEASES }}
config-file: release-please-config.json
manifest-file: release-please-manifest.json

0 comments on commit a02320d

Please sign in to comment.