diff --git a/.github/workflows/electronegativity.yml b/.github/workflows/electronegativity.yml index 861b63c7e7..51fc19b600 100644 --- a/.github/workflows/electronegativity.yml +++ b/.github/workflows/electronegativity.yml @@ -6,6 +6,9 @@ on: pull_request: branches: - master +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true jobs: build_job: runs-on: ubuntu-latest diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 8d1fecc417..dccd180707 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -1,6 +1,9 @@ name: Lint Repo on: - pull_request +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true jobs: build: name: Lint diff --git a/.github/workflows/main.yml b/.github/workflows/publish-docs.yml similarity index 100% rename from .github/workflows/main.yml rename to .github/workflows/publish-docs.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fb972b31d6..d7f042ec1c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,6 +6,9 @@ on: push: branches: - master +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true jobs: integration-test: name: integration tests on ${{ matrix.os }}