From cf46f4eeeeefb59eb4b213496f0b0532c5fec07d Mon Sep 17 00:00:00 2001 From: Drew Stone Date: Wed, 20 May 2026 13:23:45 +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-knowledge is public — unlimited free hosted minutes. Self-hosted staging-runner pool is reserved for the private agent repos; routing public CI there congests the same runner the private workflows depend on (agent-eval v0.30.0 publish queued behind staging load — reverting all three public repos: agent-eval (#63), agent-knowledge (this PR), agent-runtime (already on hosted)). --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23a0c52..abe4f32 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 dc24f46..717e337 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,7 +8,7 @@ on: jobs: verify: - runs-on: [self-hosted, staging-runner] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -50,7 +50,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