feat(ci): target ci-build runner label
CI / check (pull_request) Waiting to run
CI / build-and-cache (pull_request) Blocked by required conditions

Route check and build-and-cache jobs to ci-build runner tier
for proper resource isolation from lightweight CI workloads.
This commit is contained in:
Ash
2026-04-28 19:44:26 +00:00
parent f3b405959e
commit 5b1d352fbb
+2 -2
View File
@@ -8,7 +8,7 @@ on:
jobs:
check:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, ci-build]
steps:
- uses: actions/checkout@v6
@@ -20,7 +20,7 @@ jobs:
NIX_CONFIG: "access-tokens = git.johnogle.info=${{ secrets.GITEA_ACCESS_TOKEN }}"
build-and-cache:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, ci-build]
needs: check
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps: