File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 27
27
- name : Create pull request
28
28
env :
29
29
NUMBER : ${{ github.event.inputs.number }}
30
- # not using the default GITHUB_TOKEN because pull requests generated by it do not run any workflows
30
+ # not using secrets. GITHUB_TOKEN since pull requests from that token do not run workflows
31
31
GITHUB_TOKEN : ${{ secrets.BOT_TOKEN }}
32
32
run : |
33
33
commit=$(gh pr view $NUMBER --json mergeCommit --jq .mergeCommit.oid)
Original file line number Diff line number Diff line change 57
57
58
58
- name : Create pull request
59
59
env :
60
- # not using the default GITHUB_TOKEN because pull requests generated by it do not run any workflows
60
+ # not using secrets. GITHUB_TOKEN since pull requests from that token do not run workflows
61
61
GITHUB_TOKEN : ${{ secrets.BOT_TOKEN }}
62
62
run : |
63
63
message="Prepare release ${STABLE_VERSION}/${PRERELEASE_VERSION}"
Original file line number Diff line number Diff line change 63
63
64
64
- name : Create pull request against the release branch
65
65
env :
66
- # not using the default GITHUB_TOKEN because pull requests generated by it do not run any workflows
66
+ # not using secrets. GITHUB_TOKEN since pull requests from that token do not run workflows
67
67
GITHUB_TOKEN : ${{ secrets.BOT_TOKEN }}
68
68
run : |
69
69
message="Prepare release ${STABLE_VERSION}/${PRERELEASE_VERSION}"
@@ -119,7 +119,7 @@ jobs:
119
119
120
120
- name : Create pull request against main
121
121
env :
122
- # not using the default GITHUB_TOKEN because pull requests generated by it do not run any workflows
122
+ # not using secrets. GITHUB_TOKEN since pull requests from that token do not run workflows
123
123
GITHUB_TOKEN : ${{ secrets.BOT_TOKEN }}
124
124
run : |
125
125
message="Update version to ${NEXT_STABLE_VERSION}/${NEXT_PRERELEASE_VERSION}"
Original file line number Diff line number Diff line change 78
78
79
79
- name : Create pull request against main
80
80
env :
81
- # not using the default GITHUB_TOKEN because pull requests generated by it do not run any workflows
81
+ # not using secrets. GITHUB_TOKEN since pull requests from that token do not run workflows
82
82
GITHUB_TOKEN : ${{ secrets.BOT_TOKEN }}
83
83
run : |
84
84
message="Copy change log updates from $GITHUB_REF_NAME"
You can’t perform that action at this time.
0 commit comments