diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 5673a9a..f4fd587 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -5,6 +5,10 @@ name: Debug Changelog # Workflow name displayed on GitHub on: workflow_dispatch: # Trigger manually +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + permissions: read-all jobs: diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 3eac968..4594eb1 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -4,6 +4,10 @@ name: reviewdog on: [push] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + permissions: read-all jobs: diff --git a/.github/workflows/new-release.yml b/.github/workflows/new-release.yml index 8dd8caa..712f4c4 100644 --- a/.github/workflows/new-release.yml +++ b/.github/workflows/new-release.yml @@ -7,6 +7,10 @@ on: schedule: - cron: '0 21 * * *' # 00:00 at Europe/Helsinki +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + permissions: read-all jobs: diff --git a/.github/workflows/pre-commit-autoupdate.yml b/.github/workflows/pre-commit-autoupdate.yml index d4121d4..2735492 100644 --- a/.github/workflows/pre-commit-autoupdate.yml +++ b/.github/workflows/pre-commit-autoupdate.yml @@ -8,6 +8,10 @@ on: - cron: "0 4 * * 1,4" workflow_dispatch: +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + permissions: read-all jobs: diff --git a/.github/workflows/semantic-pr.yml b/.github/workflows/semantic-pr.yml index d3ef06b..cea2364 100644 --- a/.github/workflows/semantic-pr.yml +++ b/.github/workflows/semantic-pr.yml @@ -9,6 +9,10 @@ on: - edited - synchronize +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + permissions: read-all jobs: diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 605f7b7..9872e47 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -15,6 +15,10 @@ on: workflow_call: workflow_dispatch: +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + permissions: read-all jobs: diff --git a/.github/workflows/update-submodules.yml b/.github/workflows/update-submodules.yml index a29aaa8..82a6942 100644 --- a/.github/workflows/update-submodules.yml +++ b/.github/workflows/update-submodules.yml @@ -8,6 +8,10 @@ on: - cron: "0 4 * * 1,4" workflow_dispatch: +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + permissions: read-all jobs: