diff --git a/.github/workflows/ember.yml b/.github/workflows/ember.yml index b906767d01..8a727a4f0d 100644 --- a/.github/workflows/ember.yml +++ b/.github/workflows/ember.yml @@ -6,6 +6,10 @@ on: branches: - main +concurrency: + group: ember-${{ format('{0}-{1}', github.head_ref, github.job) || format('{0}-{1}', github.ref, github.run_number) }} + cancel-in-progress: true + jobs: build: name: run diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index ac5b712d03..11acb6e7a3 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -6,6 +6,10 @@ on: branches: - main +concurrency: + group: linting-${{ format('{0}-{1}', github.head_ref, github.job) || format('{0}-{1}', github.ref, github.run_number) }} + cancel-in-progress: true + jobs: build: name: run diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 21234f82ad..4a760b1287 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,6 +6,10 @@ on: branches: - main +concurrency: + group: tests-${{ format('{0}-{1}', github.head_ref, github.job) || format('{0}-{1}', github.ref, github.run_number) }} + cancel-in-progress: true + jobs: build: name: ${{ matrix.target }} ${{ matrix.build_type }}