From a09d06254d42ad6031d0630cf779be9618daa0ff Mon Sep 17 00:00:00 2001 From: Jonathan Haas Date: Wed, 20 May 2026 19:36:31 -0700 Subject: [PATCH 1/2] ci: move blacksmith jobs to owned runners --- .github/actionlint.yaml | 1 - .github/workflows/ci.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml index b70fc5a..13761bf 100644 --- a/.github/actionlint.yaml +++ b/.github/actionlint.yaml @@ -1,5 +1,4 @@ self-hosted-runner: labels: - - blacksmith-4vcpu-ubuntu-2404 - evalops-agent-harness-rbe - bazel-rbe diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74bff9e..1cb49bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: test: - runs-on: blacksmith-4vcpu-ubuntu-2404 + runs-on: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository && 'ubuntu-latest' || (vars.PR_VALIDATION_RUNNER || 'evalops-private-ci') }} strategy: matrix: python-version: ["3.10", "3.11", "3.12"] From c2b24f9ed3352e8bd78f25b409d8b2d6a6a9a116 Mon Sep 17 00:00:00 2001 From: Jonathan Haas Date: Wed, 20 May 2026 20:36:24 -0700 Subject: [PATCH 2/2] ci: keep public checks on hosted runners --- .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 1cb49bf..efd45d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: test: - runs-on: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository && 'ubuntu-latest' || (vars.PR_VALIDATION_RUNNER || 'evalops-private-ci') }} + runs-on: ubuntu-latest strategy: matrix: python-version: ["3.10", "3.11", "3.12"]