From a9adc4e43099136566c51133de89f554919b3712 Mon Sep 17 00:00:00 2001 From: "groombook-paperclip[bot]" Date: Tue, 17 Mar 2026 18:37:21 +0000 Subject: [PATCH 1/3] fix(ci): use GitHub-hosted runners until self-hosted are deployed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All CI runs are stuck in queued — zero self-hosted runners are registered for the groombook-runners label. Switch to ubuntu-latest to unblock PRs. Tracked in groombook/infra#2 — will revert once self-hosted runners are deployed to the cluster. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b775d10..6f51a78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: jobs: lint-typecheck: name: Lint & Typecheck - runs-on: groombook-runners + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -33,7 +33,7 @@ jobs: test: name: Test - runs-on: groombook-runners + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -54,7 +54,7 @@ jobs: build: name: Build - runs-on: groombook-runners + runs-on: ubuntu-latest needs: [lint-typecheck, test] steps: - uses: actions/checkout@v4 @@ -76,7 +76,7 @@ jobs: docker: name: Build Docker Images - runs-on: groombook-runners + runs-on: ubuntu-latest needs: [build] if: github.ref == 'refs/heads/main' steps: From dfc2076320205b48f75a6a0a647011b4fc723f1f Mon Sep 17 00:00:00 2001 From: "groombook-paperclip[bot]" Date: Tue, 17 Mar 2026 18:38:30 +0000 Subject: [PATCH 2/3] fix(ci): remove pnpm version conflict in action-setup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pnpm/action-setup@v4 now errors when both the action's `version` input and package.json's `packageManager` field specify a version. Remove the action input — package.json's `pnpm@9.15.4` is authoritative. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f51a78..dfc4c9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,6 @@ jobs: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - with: - version: 9 - uses: actions/setup-node@v4 with: @@ -38,8 +36,6 @@ jobs: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - with: - version: 9 - uses: actions/setup-node@v4 with: @@ -60,8 +56,6 @@ jobs: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - with: - version: 9 - uses: actions/setup-node@v4 with: From fd65679ca17bcb8128cb469d142649ddcf9effa1 Mon Sep 17 00:00:00 2001 From: "groombook-paperclip[bot]" Date: Tue, 17 Mar 2026 18:40:08 +0000 Subject: [PATCH 3/3] =?UTF-8?q?fix(ci):=20remove=20pnpm=20cache=20?= =?UTF-8?q?=E2=80=94=20no=20lockfile=20on=20main=20yet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit setup-node's cache: pnpm requires pnpm-lock.yaml to exist. The lockfile is coming in PR #15 but isn't on main yet. Remove caching for now — it'll be re-enabled once the lockfile lands. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfc4c9b..d3cf7d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,6 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile @@ -40,7 +39,6 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile @@ -60,7 +58,6 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile