We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81f04a5 commit f698873Copy full SHA for f698873
1 file changed
.github/workflows/github-release.yml
@@ -9,6 +9,11 @@ on:
9
required: true
10
type: string
11
description: Version to release
12
+ secrets:
13
+ # In case we want to trigger other workflows like ones that uses pushed tags
14
+ GH_PUSH_TOKEN:
15
+ required: false
16
+ description: GitHub token with push permissions
17
18
permissions:
19
contents: write
@@ -28,6 +33,7 @@ jobs:
28
33
env:
29
34
VERSION: ${{ inputs.version }}
30
35
with:
36
+ github-token: ${{ secrets.GH_PUSH_TOKEN || github.token }}
31
37
script: |
32
38
const version = process.env.VERSION;
39
let releaseNotes = '';
0 commit comments