Skip to content

Commit 5da410e

Browse files
committed
fix(github-actions): rename repository secret variable GITHUB_TOKEN to GH_TOKEN
1 parent 49cba32 commit 5da410e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Create release
4040
uses: ncipollo/release-action@v1
4141
with:
42-
token: ${{ secrets.GITHUB_TOKEN }}
42+
token: ${{ secrets.GH_TOKEN }}
4343
commit: ${{ github.event.pull_request.merge_commit_sha }}
4444
tag: ${{ env.RELEASE_VERSION }}
4545
name: ${{ env.RELEASE_VERSION }}
@@ -50,7 +50,7 @@ jobs:
5050
- name: Create merge PR ${{ github.event.pull_request.head.ref }} -> ${{ env.BRANCH_DEVELOP }}
5151
uses: peter-evans/create-pull-request@v4
5252
with:
53-
token: ${{ secrets.GITHUB_TOKEN }}
53+
token: ${{ secrets.GH_TOKEN }}
5454
base: ${{ env.BRANCH_DEVELOP }}
5555
branch: ${{ github.event.pull_request.head.ref }}
5656
delete-branch: false

0 commit comments

Comments
 (0)