From a711a46bfac9d91f052cb8adcefd3c119ac09031 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 18 Apr 2026 11:56:17 -0500 Subject: [PATCH] Route release/deploy/manual workflows to dedicated release runner deploy-manual, update-server, auto-release now use runs-on: release to avoid competing with CI jobs in the general runner queue. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/auto-release.yml | 2 +- .github/workflows/deploy-manual.yml | 2 +- .github/workflows/update-server.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 4eb0ee2..e7aff14 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -53,7 +53,7 @@ permissions: jobs: release: name: Build & Release Pipeline - runs-on: ubuntu-latest + runs-on: release if: >- github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' diff --git a/.github/workflows/deploy-manual.yml b/.github/workflows/deploy-manual.yml index 9d8c732..9d39ca1 100644 --- a/.github/workflows/deploy-manual.yml +++ b/.github/workflows/deploy-manual.yml @@ -32,7 +32,7 @@ permissions: jobs: deploy: name: SFTP Deploy to Dev - runs-on: ubuntu-latest + runs-on: release steps: - name: Checkout repository diff --git a/.github/workflows/update-server.yml b/.github/workflows/update-server.yml index cd98804..4f1c117 100644 --- a/.github/workflows/update-server.yml +++ b/.github/workflows/update-server.yml @@ -53,7 +53,7 @@ permissions: jobs: update-xml: name: Update updates.xml - runs-on: ubuntu-latest + runs-on: release if: >- github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'