From ff5c6d883a9990ba9f112a483f4464d71b976981 Mon Sep 17 00:00:00 2001 From: NomadsReach <144523850+NomadsReach@users.noreply.github.com> Date: Sun, 16 Aug 2026 16:51:10 -0400 Subject: [PATCH] Run the GNS bridge job on the self-hosted runner instead of GitHub-hosted The ubuntu-latest job cannot start while GitHub-hosted minutes are billing-blocked. Target the self-hosted Linux x64 runner, matching the rest of the CI (csharp-server.yml, CO-BETA/beta-ci.yml). --- .github/workflows/gns-transport.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gns-transport.yml b/.github/workflows/gns-transport.yml index 88ccc59..3914717 100644 --- a/.github/workflows/gns-transport.yml +++ b/.github/workflows/gns-transport.yml @@ -13,7 +13,7 @@ on: jobs: linux: name: Linux native GNS bridge - runs-on: ubuntu-latest + runs-on: [self-hosted, Linux, X64] steps: - uses: actions/checkout@v4