From 1a2b103675e52b45a0627fda462c78d497d685bb Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Tue, 28 Oct 2025 16:49:26 -0400 Subject: [PATCH] chore(github): make all workflows (except release) concurrent by sha --- .github/workflows/ci-actions.yml | 2 +- .github/workflows/ci-code.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/publish.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-actions.yml b/.github/workflows/ci-actions.yml index 1eda665..0bfd0b3 100644 --- a/.github/workflows/ci-actions.yml +++ b/.github/workflows/ci-actions.yml @@ -10,7 +10,7 @@ permissions: contents: read # Needed to checkout the repository. concurrency: - group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}" + group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.sha }}" cancel-in-progress: true jobs: diff --git a/.github/workflows/ci-code.yml b/.github/workflows/ci-code.yml index 5281f08..3b341b6 100644 --- a/.github/workflows/ci-code.yml +++ b/.github/workflows/ci-code.yml @@ -12,7 +12,7 @@ permissions: contents: read # Needed to checkout the repository. concurrency: - group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}" + group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.sha }}" cancel-in-progress: true jobs: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 70b3a3d..f2a301f 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -12,7 +12,7 @@ permissions: contents: read # Needed to checkout the repository. concurrency: - group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}" + group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.sha }}" cancel-in-progress: true jobs: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 07ae1a8..4accc49 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,7 +19,7 @@ permissions: contents: read # Needed to checkout the repository. concurrency: - group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}" + group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.sha }}" cancel-in-progress: true jobs: