From ea244c20fc05cc3253dc0a900b7c064820707cf0 Mon Sep 17 00:00:00 2001 From: px Date: Fri, 20 Jun 2025 11:34:14 -0700 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=9A=80=20=F0=9F=94=A7=20fix(workflows?= =?UTF-8?q?):=20Enhance=20concurrency=20group=20identifier=20in=20ci-seman?= =?UTF-8?q?tic-release-sync.yml=20for=20better=20tracking?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-semantic-release-sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-semantic-release-sync.yml b/.github/workflows/ci-semantic-release-sync.yml index 349f3af..ae03332 100644 --- a/.github/workflows/ci-semantic-release-sync.yml +++ b/.github/workflows/ci-semantic-release-sync.yml @@ -64,7 +64,7 @@ on: default: '1' concurrency: - group: ci-release-sync-${{ github.ref }}-${{ github.event_name }} + group: ci-release-sync-${{ github.ref }}-${{ github.event_name }}-${{ github.run_id }} cancel-in-progress: true jobs: From acc6382f2980b558247db085d46a7e71eb407ebb Mon Sep 17 00:00:00 2001 From: px Date: Fri, 20 Jun 2025 11:36:50 -0700 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=9A=80=20=F0=9F=94=A7=20chore(workflo?= =?UTF-8?q?ws):=20Add=20concurrency=20groups=20to=20cleanup-branch=20and?= =?UTF-8?q?=20prune-releases=20workflows=20for=20improved=20management?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto-merge.yml | 2 +- .github/workflows/cleanup-branch.yml | 4 ++++ .github/workflows/prune-releases.yaml | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index 8d9aa68..0d44b54 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -20,7 +20,7 @@ permissions: checks: read concurrency: - group: auto-merge-${{ github.event.pull_request.number || github.ref }} + group: auto-merge-${{ github.event.pull_request.number || github.ref }}-${{ github.run_id }} cancel-in-progress: true jobs: diff --git a/.github/workflows/cleanup-branch.yml b/.github/workflows/cleanup-branch.yml index 5df2003..fd40f85 100644 --- a/.github/workflows/cleanup-branch.yml +++ b/.github/workflows/cleanup-branch.yml @@ -24,6 +24,10 @@ on: default: true type: boolean +concurrency: + group: cleanup-branch-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + jobs: check-and-suggest: runs-on: ubuntu-latest diff --git a/.github/workflows/prune-releases.yaml b/.github/workflows/prune-releases.yaml index 9dac955..ddb17f4 100644 --- a/.github/workflows/prune-releases.yaml +++ b/.github/workflows/prune-releases.yaml @@ -9,6 +9,10 @@ on: default: 3 type: number +concurrency: + group: prune-releases-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + jobs: prune: runs-on: ubuntu-latest From 509440ff80910912556d09c0de47c84d2a7c3662 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 20 Jun 2025 18:37:41 +0000 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=A4=96=20chore(release):=201.2.9=20[s?= =?UTF-8?q?kip=20ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## [1.2.9](https://github.com/variablesoftware/github-workflows/compare/v1.2.8...v1.2.9) (2025-06-20) --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d31154..dc592ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## [1.2.9](https://github.com/variablesoftware/github-workflows/compare/v1.2.8...v1.2.9) (2025-06-20) + ## [1.2.8](https://github.com/variablesoftware/github-workflows/compare/v1.2.7...v1.2.8) (2025-06-20) ## [1.2.7](https://github.com/variablesoftware/github-workflows/compare/v1.2.6...v1.2.7) (2025-06-20) diff --git a/package.json b/package.json index 68155ba..9c8d19e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "github-workflows", - "version": "1.2.8", + "version": "1.2.9", "description": "Reusable GitHub Actions workflows for the organization.", "main": "README.md", "license": "MIT",