diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 7259049ba..e9dc06b17 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -1,6 +1,9 @@ name: CodeSpell on: - pull_request +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: codespell: name: CodeSpell diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 057753096..0256c185f 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -1,6 +1,9 @@ name: Linting on: - pull_request +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: yamllint: name: Yamllint diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cf9afdac5..d06cc238f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,6 +6,10 @@ on: branches: - master +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: confirm_config_and_documentation: runs-on: ubuntu-latest