From b69233b836a57090f58a524278fa466dd0b7707a Mon Sep 17 00:00:00 2001 From: Deploy Debbie Date: Thu, 19 Mar 2026 17:43:47 +0000 Subject: [PATCH] fix(ci): update runner label from local-ubuntu-latest-cartsnitch to runners-cartsnitch ARC runner scale set was reconfigured with label `runners-cartsnitch`. All CI jobs were queued indefinitely because no runner matched the old label. Relates to infra#20 Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 585655d..1667309 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ env: jobs: lint: - runs-on: local-ubuntu-latest-cartsnitch + runs-on: runners-cartsnitch steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -34,7 +34,7 @@ jobs: run: npx tsc --noEmit test: - runs-on: local-ubuntu-latest-cartsnitch + runs-on: runners-cartsnitch steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -46,7 +46,7 @@ jobs: run: npx vitest run build-and-push: - runs-on: local-ubuntu-latest-cartsnitch + runs-on: runners-cartsnitch needs: [lint, test] steps: - uses: actions/checkout@v4