This is an automated email from the ASF dual-hosted git repository.

jdaugherty pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git


The following commit(s) were added to refs/heads/7.0.x by this push:
     new c7e169ad6e [skip ci] share the same concurrency group in release-notes 
& releases to prevent stepping on each workflows / causing release builds to 
fail
c7e169ad6e is described below

commit c7e169ad6ef86ce342dc05a4724a106189eb4c16
Author: James Daugherty <[email protected]>
AuthorDate: Thu Jan 22 01:11:35 2026 -0500

    [skip ci] share the same concurrency group in release-notes & releases to 
prevent stepping on each workflows / causing release builds to fail
---
 .github/workflows/release-notes.yml | 2 +-
 .github/workflows/release.yml       | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/release-notes.yml 
b/.github/workflows/release-notes.yml
index 40915565ae..8d69964686 100644
--- a/.github/workflows/release-notes.yml
+++ b/.github/workflows/release-notes.yml
@@ -29,7 +29,7 @@ on:
   workflow_dispatch:
 # queue jobs and only allow 1 run per branch due to the likelihood of hitting 
GitHub resource limits
 concurrency:
-  group: ${{ github.workflow }}-${{ github.ref }}
+  group: release-pipeline
   cancel-in-progress: false
 jobs:
   update_release_draft:
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 405bbf0251..8c4f676908 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -37,6 +37,9 @@ env:
   TAG: ${{ github.event.release.tag_name }}
   TARGET_BRANCH: ${{ github.event.release.target_commitish }}
   VERSION: will be computed in each job
+concurrency:
+  group: release-pipeline
+  cancel-in-progress: false
 jobs:
   publish:
     name: "Stage Jar Files"

Reply via email to