From 166fa604e9b0677cb6cf06eb4f7c387f96d2543d Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Thu, 2 Apr 2026 11:10:21 -0500 Subject: [PATCH] Only run the release-gate on workflow dispatch --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e44415f1b7281..0ae9723fe81ea0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,7 +56,7 @@ jobs: release-gate: # N.B. This name should not change, it is used for downstream checks. name: release-gate - if: ${{ inputs.tag != 'dry-run' }} + if: ${{ github.event_name == 'workflow_dispatch' && inputs.tag != 'dry-run' }} runs-on: ubuntu-latest # This environment requires a 2-factor approval, i.e., the workflow must be approved by another # team member. GitHub fires approval events on every job that deploys to an environment, so we