We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7555ff commit 6e26f49Copy full SHA for 6e26f49
1 file changed
.github/workflows/bump-version.yml
@@ -24,8 +24,10 @@ jobs:
24
ref: ${{ github.event.pull_request.base.ref }}
25
# fetch-depth 2 so HEAD~1 resolves to the pre-merge master commit
26
fetch-depth: 2
27
- # Use a PAT so the pushed bump commit can trigger deploy.yml
28
- token: ${{ secrets.RELEASE_BOT_TOKEN }}
+ # Use a PAT so the pushed bump commit can trigger deploy.yml.
+ # Falls back to github.token if RELEASE_BOT_TOKEN is not configured
29
+ # (note: pushes with github.token won't re-trigger deploy.yml).
30
+ token: ${{ secrets.RELEASE_BOT_TOKEN || github.token }}
31
32
- name: Set up Node
33
uses: actions/setup-node@v6
0 commit comments