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/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: 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 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",