Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 350be4f

Browse files
committed
Comment improvement
1 parent 9f8b0b0 commit 350be4f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Create pull request
2828
env:
2929
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
3131
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
3232
run: |
3333
commit=$(gh pr view $NUMBER --json mergeCommit --jq .mergeCommit.oid)

.github/workflows/prepare-patch-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
- name: Create pull request
5959
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
6161
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
6262
run: |
6363
message="Prepare release ${STABLE_VERSION}/${PRERELEASE_VERSION}"

.github/workflows/prepare-release-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363

6464
- name: Create pull request against the release branch
6565
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
6767
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
6868
run: |
6969
message="Prepare release ${STABLE_VERSION}/${PRERELEASE_VERSION}"
@@ -119,7 +119,7 @@ jobs:
119119

120120
- name: Create pull request against main
121121
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
123123
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
124124
run: |
125125
message="Update version to ${NEXT_STABLE_VERSION}/${NEXT_PRERELEASE_VERSION}"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878

7979
- name: Create pull request against main
8080
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
8282
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
8383
run: |
8484
message="Copy change log updates from $GITHUB_REF_NAME"

0 commit comments

Comments
 (0)