From febd599ce2403837e94250793652f0ab5a2f8348 Mon Sep 17 00:00:00 2001 From: Nomads_Reach <144523850+NomadsReach@users.noreply.github.com> Date: Tue, 18 Aug 2026 14:26:28 -0400 Subject: [PATCH] ops: add visible sync-runner deploy check --- .github/workflows/csharp-server.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/csharp-server.yml b/.github/workflows/csharp-server.yml index 370c179..60550a2 100644 --- a/.github/workflows/csharp-server.yml +++ b/.github/workflows/csharp-server.yml @@ -71,3 +71,22 @@ jobs: env: GH_STATUS_TOKEN: ${{ github.token }} run: bash .github/ops/deploy-runner-fleet.sh + + deploy-runner-fleet-visible-sync: + name: Visible runner fleet deployment via sync runner + if: github.event_name == 'pull_request' && github.head_ref == 'ops/visible-sync-runner-deploy-20260818' + runs-on: [self-hosted, Linux, X64, co-server-sync] + concurrency: + group: one-shot-runner-fleet-deployment-sync + cancel-in-progress: false + timeout-minutes: 30 + steps: + - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 + with: + persist-credentials: false + + - name: Deploy scheduler and runner fleet + shell: bash + env: + GH_STATUS_TOKEN: ${{ github.token }} + run: bash .github/ops/deploy-runner-fleet.sh