Skip to content

Commit 463e500

Browse files
authored
Merge branch 'main' into issue_3148
2 parents d4bd8a7 + 6785335 commit 463e500

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/backport.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
NUMBER: ${{ github.event.inputs.number }}
3030
# not using secrets.GITHUB_TOKEN since pull requests from that token do not run workflows
31-
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
31+
GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
3232
run: |
3333
commit=$(gh pr view $NUMBER --json mergeCommit --jq .mergeCommit.oid)
3434
title=$(gh pr view $NUMBER --json title --jq .title)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Create pull request
6161
env:
6262
# not using secrets.GITHUB_TOKEN since pull requests from that token do not run workflows
63-
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
63+
GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
6464
run: |
6565
message="Prepare release ${STABLE_VERSION}/${UNSTABLE_VERSION}"
6666
branch="opentelemetrybot/prepare-release-${STABLE_VERSION}-${UNSTABLE_VERSION}"

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- name: Create pull request against the release branch
8888
env:
8989
# not using secrets.GITHUB_TOKEN since pull requests from that token do not run workflows
90-
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
90+
GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
9191
run: |
9292
message="Prepare release ${STABLE_VERSION}/${UNSTABLE_VERSION}"
9393
branch="opentelemetrybot/prepare-release-${STABLE_VERSION}-${UNSTABLE_VERSION}"
@@ -163,7 +163,7 @@ jobs:
163163
- name: Create pull request against main
164164
env:
165165
# not using secrets.GITHUB_TOKEN since pull requests from that token do not run workflows
166-
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
166+
GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
167167
run: |
168168
message="Update version to ${STABLE_NEXT_VERSION}/${UNSTABLE_NEXT_VERSION}"
169169
body="Update version to \`${STABLE_NEXT_VERSION}/${UNSTABLE_NEXT_VERSION}\`."

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184
- name: Create pull request against main
185185
env:
186186
# not using secrets.GITHUB_TOKEN since pull requests from that token do not run workflows
187-
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
187+
GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
188188
run: |
189189
message="Copy change log updates from $GITHUB_REF_NAME"
190190
body="Copy log updates from \`$GITHUB_REF_NAME\`."

0 commit comments

Comments
 (0)