Skip to content

Commit d07fa9c

Browse files
committed
fix: token is named RELEASE_PR_TOKEN
1 parent 6d90d19 commit d07fa9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-please.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
id: release
2929
with:
3030
command: manifest
31-
token: ${{secrets.OPENTELEMETRYBOT_GITHUB_TOKEN}}
31+
token: ${{secrets.RELEASE_PR_TOKEN}}
3232
default-branch: main
3333

3434
# get release PR as we're currently on main
@@ -39,12 +39,12 @@ jobs:
3939
with:
4040
ref: release-please--branches--main
4141
# use a token so that workflows on the PR run when we push later
42-
token: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
42+
token: ${{ secrets.RELEASE_PR_TOKEN }}
4343

4444
# release-please does not do this on its own, so we do it here instead
4545
- name: Update package-lock.json in PR
4646
env:
47-
GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
47+
GITHUB_TOKEN: ${{ secrets.RELEASE_PR_TOKEN }}
4848
# only update if a PR has been created
4949
if: ${{ steps.release.outputs.pr }}
5050
run: |

0 commit comments

Comments
 (0)