From 6544822f756286f54b1ac2f8f54e2418aee1177c Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Thu, 19 Feb 2026 15:11:40 -0500 Subject: [PATCH 1/2] ci: fixes auth token setup --- .github/workflows/promote-shipped-apis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/promote-shipped-apis.yml b/.github/workflows/promote-shipped-apis.yml index e20ae60b6..f06e2972e 100644 --- a/.github/workflows/promote-shipped-apis.yml +++ b/.github/workflows/promote-shipped-apis.yml @@ -17,6 +17,7 @@ jobs: uses: actions/checkout@v6 with: fetch-depth: 0 + token: ${{ steps.app-token.outputs.token }} - name: Generate GitHub App token id: app-token @@ -32,7 +33,7 @@ jobs: run: | git config --global user.name "github-actions[bot]" git config --global user.email "github-actions[bot]@users.noreply.github.com" - git config --global url."https://x-access-token:$env:GH_TOKEN@github.com/".insteadOf "https://github.com/" + git config --global url."https://$($env:GH_TOKEN)@github.com/".insteadOf "https://github.com/" - name: Check for existing PR id: check_pr From b7378fe69af80c12734f6f20dd4113a70447c70d Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Thu, 19 Feb 2026 15:12:34 -0500 Subject: [PATCH 2/2] ci: adds workflow dispatch trigger Signed-off-by: Vincent Biret --- .github/workflows/promote-shipped-apis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/promote-shipped-apis.yml b/.github/workflows/promote-shipped-apis.yml index f06e2972e..24fd14667 100644 --- a/.github/workflows/promote-shipped-apis.yml +++ b/.github/workflows/promote-shipped-apis.yml @@ -5,6 +5,7 @@ on: branches: - main - support/v2 + workflow_dispatch: jobs: promote-apis: