From b62daaa15d99f970fbb1c161436206a84090d6e1 Mon Sep 17 00:00:00 2001 From: Drew Stone Date: Wed, 20 May 2026 13:22:44 +0300 Subject: [PATCH] ci: revert public-repo workflows to ubuntu-latest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit agent-eval is public — unlimited free hosted Actions minutes. The self-hosted staging-runner pool is for the private agent repos (tax/legal/gtm/creative); routing public CI there congests the same runner the private workflows depend on (just observed: agent-eval v0.30.0 publish queued behind staging load). --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f42100..eada15d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: ci: - runs-on: [self-hosted, staging-runner] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1fe8864..4219d9e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: # Verify both packages build and pass tests, in lockstep. # If either fails, neither publishes. verify: - runs-on: [self-hosted, staging-runner] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -83,7 +83,7 @@ jobs: publish-npm: needs: verify if: startsWith(github.ref, 'refs/tags/v') - runs-on: [self-hosted, staging-runner] + runs-on: ubuntu-latest permissions: contents: read id-token: write @@ -122,7 +122,7 @@ jobs: # still be able to push the matching PyPI artifact. needs: verify if: startsWith(github.ref, 'refs/tags/v') - runs-on: [self-hosted, staging-runner] + runs-on: ubuntu-latest permissions: contents: read id-token: write