From 129f0adc96632a065bb74d11e0672b6df633e503 Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Sun, 29 Mar 2026 19:01:40 +0000 Subject: [PATCH] fix(ci): add owner and repositories params to GitHub App token for cross-repo infra access The deploy-dev job fails because actions/create-github-app-token@v1 defaults to the current repository. Adding owner + repositories scopes the token to include cartsnitch/infra so the subsequent checkout step succeeds. Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7841460..da74e62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,6 +118,8 @@ jobs: with: app-id: ${{ secrets.CARTSNITCH_APP_ID }} private-key: ${{ secrets.CARTSNITCH_APP_PRIVATE_KEY }} + owner: ${{ github.repository_owner }} + repositories: infra - name: Checkout infra repo uses: actions/checkout@v4