Skip to content

Commit c719560

Browse files
committed
fix: secret name github_token within workflow_call can not be used since it would collide with system reserved name
1 parent 9eb0c8d commit c719560

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/create-changesets-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
required: true
1818
type: string
1919
secrets:
20-
github_token:
20+
token:
2121
required: true
2222
npm_token:
2323
required: true
@@ -57,5 +57,5 @@ jobs:
5757
setupGitUser: true
5858
env:
5959
HOME: ${{ github.workspace }}
60-
GITHUB_TOKEN: ${{ secrets.github_token }}
60+
GITHUB_TOKEN: ${{ secrets.token }}
6161
NPM_TOKEN: ${{ secrets.npm_token }}

0 commit comments

Comments
 (0)