Skip to content

Commit 3b3a4a6

Browse files
authored
Backport workflow: try using the app token
GITHUB_TOKEN is no longer defined; we should use either the workflow token or the app one. Here we try using the app one.
1 parent 294a9d9 commit 3b3a4a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
echo SOURCE_BRANCH=${SOURCE_BRANCH}
135135
echo TARGET_BRANCH=${TARGET_BRANCH}
136136
python .github/update-release-branch.py \
137-
--github-token ${GITHUB_TOKEN} \
137+
--github-token ${{ steps.app-token.outputs.token }} \
138138
--repository-nwo ${{ github.repository }} \
139139
--source-branch ${SOURCE_BRANCH} \
140140
--target-branch ${TARGET_BRANCH} \

0 commit comments

Comments
 (0)