From 12857883a99b52e14e436c755e5f72a7782acfab Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Sat, 31 Jan 2026 21:24:58 -0600 Subject: [PATCH] dev: Fix token vars (#6970) --- .github/workflows/locale-sync.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/locale-sync.yml b/.github/workflows/locale-sync.yml index 477b9a1dc..09e1054b6 100644 --- a/.github/workflows/locale-sync.yml +++ b/.github/workflows/locale-sync.yml @@ -15,12 +15,12 @@ jobs: sync-locales: runs-on: ubuntu-latest steps: - - name: Generate app token - uses: actions/create-github-app-token@v1 + - name: Generate GitHub App Token id: app-token + uses: actions/create-github-app-token@v1 with: - app-id: ${{ secrets.APP_ID }} - private-key: ${{ secrets.APP_PRIVATE_KEY }} + app-id: ${{ secrets.COMMIT_BOT_APP_ID }} + private-key: ${{ secrets.COMMIT_BOT_APP_PRIVATE_KEY }} - name: Checkout repository uses: actions/checkout@v4