diff --git a/.github/workflows/appainter-annotations.yml b/.github/workflows/appainter-annotations.yml index 96bb0bd8..bf958eaa 100644 --- a/.github/workflows/appainter-annotations.yml +++ b/.github/workflows/appainter-annotations.yml @@ -10,6 +10,10 @@ defaults: run: working-directory: packages/annotations +concurrency: + group: ${{ github.workflow }}-${{ github.event.number || github.ref }} + cancel-in-progress: true + jobs: lint: name: Lint diff --git a/.github/workflows/appainter-builder.yml b/.github/workflows/appainter-builder.yml index fec55b69..e3ad0d4a 100644 --- a/.github/workflows/appainter-builder.yml +++ b/.github/workflows/appainter-builder.yml @@ -10,6 +10,10 @@ defaults: run: working-directory: packages/builder +concurrency: + group: ${{ github.workflow }}-${{ github.event.number || github.ref }} + cancel-in-progress: true + jobs: test: name: Test diff --git a/.github/workflows/example-app.yml b/.github/workflows/example-app.yml index 87e296d8..611367ba 100644 --- a/.github/workflows/example-app.yml +++ b/.github/workflows/example-app.yml @@ -10,6 +10,10 @@ defaults: run: working-directory: example +concurrency: + group: ${{ github.workflow }}-${{ github.event.number || github.ref }} + cancel-in-progress: true + jobs: test: name: Test diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 00b7b0eb..91ad6188 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -6,6 +6,10 @@ on: - main pull_request: +concurrency: + group: ${{ github.workflow }}-${{ github.event.number || github.ref }} + cancel-in-progress: true + jobs: test: name: Test