From 7538e557959260f2f8a5a171bc92a70ac8d116fc Mon Sep 17 00:00:00 2001 From: Dave Allie Date: Mon, 9 Feb 2026 08:15:13 +1100 Subject: [PATCH] Move release candidate workflow to manual dispatch --- .github/workflows/release_candidate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_candidate.yml b/.github/workflows/release_candidate.yml index e9bbc636..4df20d02 100644 --- a/.github/workflows/release_candidate.yml +++ b/.github/workflows/release_candidate.yml @@ -1,11 +1,11 @@ name: Compile Release Candidate on: - pull_request: + workflow_dispatch: jobs: build-release-candidate: - if: startsWith(github.head_ref, 'release/') + if: startsWith(github.ref_name, 'release/') runs-on: ubuntu-latest steps: - uses: actions/checkout@v6