From 8f76e0180be806a18507f1d90e1216bf37aca871 Mon Sep 17 00:00:00 2001 From: Zeke Foppa <196249+bfops@users.noreply.github.com> Date: Thu, 2 Jul 2026 16:17:36 -0700 Subject: [PATCH] Release - concurrency group tweaks (#5476) # Description of Changes - Dry runs effectively all get their own concurrency group, since they don't mutate anything anyway - All release have the tag as part of the concurrency group, so we can hypothetically run multiple different versions at once (and it just seems clearer). # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing None Co-authored-by: Zeke Foppa --- .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 6359b768930..c0921c8b1c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,7 +49,7 @@ permissions: packages: write concurrency: - group: manual-release + group: manual-release-${{ inputs.release_tag }}${{ inputs.dry_run && format('-dry-run-{0}', github.run_id) || '' }} cancel-in-progress: true jobs: