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.
This commit is contained in:
Zanie Blue
2026-01-14 12:14:43 -06:00
committed by GitHub
parent b95b151cac
commit a4327c21b4
+1 -1
View File
@@ -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') }}