From a4327c21b41f53227b5f66291f6bddd0f348aa3d Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 14 Jan 2026 12:14:43 -0600 Subject: [PATCH] Use a Depot runner for `plan` jobs (#17472) This job is in the hot path for all other CI jobs, let's avoid letting it be blocked by GitHub concurrency limits and such. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a00b81a9..5d4c77010 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ concurrency: jobs: plan: - runs-on: ubuntu-latest + runs-on: depot-ubuntu-24.04 outputs: # Run checks/tests if no-test label is not present and code changed (or on main) test-code: ${{ !contains(github.event.pull_request.labels.*.name, 'no-test') && (steps.changed.outputs.code_any_changed == 'true' || github.ref == 'refs/heads/main') }}