From d9e6f2cf7241775390113963f3326ec2bb9c8e20 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Wed, 15 Jul 2026 14:10:39 +0200 Subject: [PATCH] devops: use GitHub App client ID Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/workflows/fix-flakes.yml | 2 +- .github/workflows/publish_release.yml | 2 +- .github/workflows/roll_browser_into_playwright.yml | 2 +- .github/workflows/roll_nodejs.yml | 2 +- .github/workflows/roll_stable_test_runner.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/fix-flakes.yml b/.github/workflows/fix-flakes.yml index 740a857bdf70e..346f7359378b4 100644 --- a/.github/workflows/fix-flakes.yml +++ b/.github/workflows/fix-flakes.yml @@ -272,7 +272,7 @@ jobs: - uses: actions/create-github-app-token@v3 id: app-token with: - app-id: ${{ vars.PLAYWRIGHT_APP_ID }} + client-id: ${{ vars.PLAYWRIGHT_APP_CLIENT_ID }} private-key: ${{ secrets.PLAYWRIGHT_PRIVATE_KEY }} - name: Apply commit and open PR diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 354e0d98e954e..18c678511d196 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -58,7 +58,7 @@ jobs: - uses: actions/create-github-app-token@v3 id: app-token with: - app-id: ${{ vars.PLAYWRIGHT_APP_ID }} + client-id: ${{ vars.PLAYWRIGHT_APP_CLIENT_ID }} private-key: ${{ secrets.PLAYWRIGHT_PRIVATE_KEY }} repositories: trace.playwright.dev - name: Deploy Canary diff --git a/.github/workflows/roll_browser_into_playwright.yml b/.github/workflows/roll_browser_into_playwright.yml index 93430568f8b74..007eef766c197 100644 --- a/.github/workflows/roll_browser_into_playwright.yml +++ b/.github/workflows/roll_browser_into_playwright.yml @@ -55,7 +55,7 @@ jobs: - uses: actions/create-github-app-token@v3 id: app-token with: - app-id: ${{ vars.PLAYWRIGHT_APP_ID }} + client-id: ${{ vars.PLAYWRIGHT_APP_CLIENT_ID }} private-key: ${{ secrets.PLAYWRIGHT_PRIVATE_KEY }} - name: Create Pull Request uses: actions/github-script@v9 diff --git a/.github/workflows/roll_nodejs.yml b/.github/workflows/roll_nodejs.yml index 61777ac1ec33a..1287bbe7c9c0a 100644 --- a/.github/workflows/roll_nodejs.yml +++ b/.github/workflows/roll_nodejs.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/create-github-app-token@v3 id: app-token with: - app-id: ${{ vars.PLAYWRIGHT_APP_ID }} + client-id: ${{ vars.PLAYWRIGHT_APP_CLIENT_ID }} private-key: ${{ secrets.PLAYWRIGHT_PRIVATE_KEY }} - name: Create Pull Request if: ${{ steps.prepare-branch.outputs.HAS_CHANGES == '1' }} diff --git a/.github/workflows/roll_stable_test_runner.yml b/.github/workflows/roll_stable_test_runner.yml index af229b11dce72..0e262839a61a0 100644 --- a/.github/workflows/roll_stable_test_runner.yml +++ b/.github/workflows/roll_stable_test_runner.yml @@ -41,7 +41,7 @@ jobs: - uses: actions/create-github-app-token@v3 id: app-token with: - app-id: ${{ vars.PLAYWRIGHT_APP_ID }} + client-id: ${{ vars.PLAYWRIGHT_APP_CLIENT_ID }} private-key: ${{ secrets.PLAYWRIGHT_PRIVATE_KEY }} - name: Create Pull Request if: ${{ steps.prepare-branch.outputs.HAS_CHANGES == '1' }}