From ab358f44bbc45f67afcefdbcf26812cc85898c40 Mon Sep 17 00:00:00 2001 From: Deploy Debbie Date: Thu, 19 Mar 2026 21:25:51 +0000 Subject: [PATCH] fix(ci): use correct ARC runner label runners-cartsnitch The correct self-hosted ARC runner label is runners-cartsnitch, not cartsnitch-runners. All CI jobs were failing because no runners matched the old label. 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 4fe90dc..1667309 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ env: jobs: lint: - runs-on: cartsnitch-runners + 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: cartsnitch-runners + 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: cartsnitch-runners + runs-on: runners-cartsnitch needs: [lint, test] steps: - uses: actions/checkout@v4