From 3b3a4a69cf63047575ccdec22f1d2e6cb7472659 Mon Sep 17 00:00:00 2001 From: Chris Smowton Date: Thu, 19 Sep 2024 12:07:05 +0100 Subject: [PATCH] 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. --- .github/workflows/update-release-branch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-release-branch.yml b/.github/workflows/update-release-branch.yml index 7b6f31c26d..7d1f745ed8 100644 --- a/.github/workflows/update-release-branch.yml +++ b/.github/workflows/update-release-branch.yml @@ -134,7 +134,7 @@ jobs: echo SOURCE_BRANCH=${SOURCE_BRANCH} echo TARGET_BRANCH=${TARGET_BRANCH} python .github/update-release-branch.py \ - --github-token ${GITHUB_TOKEN} \ + --github-token ${{ steps.app-token.outputs.token }} \ --repository-nwo ${{ github.repository }} \ --source-branch ${SOURCE_BRANCH} \ --target-branch ${TARGET_BRANCH} \