From c5ce5e5d1c11324097adc5a2c65c9d8cf97755be Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Thu, 25 Sep 2025 12:12:42 +0100 Subject: [PATCH] Don't dry-run `rollback-release` workflow on release branches --- .github/workflows/rollback-release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/rollback-release.yml b/.github/workflows/rollback-release.yml index 937c413f90..8d8e872fa7 100644 --- a/.github/workflows/rollback-release.yml +++ b/.github/workflows/rollback-release.yml @@ -10,6 +10,10 @@ on: required: true # Only for dry-runs of changes to the workflow. push: + # Don't run dry-run on release branches, to avoid an issue where the + # "new" tag determined by the "Prepare release" job already exists. + branches-ignore: + - releases/v* paths: - .github/workflows/rollback-release.yml - .github/actions/prepare-mergeback-branch/**