From 77eb4277186b4f35e293d2b4b50698c337fdbabf Mon Sep 17 00:00:00 2001 From: Josh Mabry Date: Wed, 24 Jun 2026 03:56:40 -0700 Subject: [PATCH] ci: route Linux runner through NSC_RUNNER variable Replaces hardcoded `runs-on: namespace-profile-protolabs-linux` with `${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}`, matching the override pattern already standard across the plugin repos. No behavior change: with NSC_RUNNER unset, jobs still run on Namespace. This lets the whole fleet move to self-hosted runners by setting a single org-level Actions variable instead of editing every workflow. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/verify-bundle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify-bundle.yml b/.github/workflows/verify-bundle.yml index 349961d..fe45543 100644 --- a/.github/workflows/verify-bundle.yml +++ b/.github/workflows/verify-bundle.yml @@ -20,7 +20,7 @@ permissions: jobs: verify: - runs-on: namespace-profile-protolabs-linux + runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }} steps: - uses: actions/checkout@v4 @@ -43,7 +43,7 @@ jobs: bump: if: github.event_name != 'pull_request' - runs-on: namespace-profile-protolabs-linux + runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }} steps: - uses: actions/checkout@v4