diff --git a/.github/workflows/audit.yaml b/.github/workflows/audit.yaml index 686da363..cbe65f6e 100644 --- a/.github/workflows/audit.yaml +++ b/.github/workflows/audit.yaml @@ -4,7 +4,7 @@ on: push: concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml index dec310bc..766b6e87 100644 --- a/.github/workflows/build-docs.yaml +++ b/.github/workflows/build-docs.yaml @@ -3,7 +3,9 @@ name: Build docs on: push: -concurrency: ${{ github.workflow }}-${{ github.ref }} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: build: diff --git a/.github/workflows/build-packages.yaml b/.github/workflows/build-packages.yaml index 13e9aadb..350e68c3 100644 --- a/.github/workflows/build-packages.yaml +++ b/.github/workflows/build-packages.yaml @@ -4,7 +4,9 @@ name: Build Packages on: push: -concurrency: ${{ github.workflow }}-${{ github.ref }} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: build: diff --git a/.github/workflows/dev-packages.yaml b/.github/workflows/dev-packages.yaml index a960ef6b..471ab554 100644 --- a/.github/workflows/dev-packages.yaml +++ b/.github/workflows/dev-packages.yaml @@ -4,7 +4,9 @@ name: Create Dev Release on: workflow_dispatch -concurrency: ${{ github.workflow }}-${{ github.ref }} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: publish: diff --git a/.github/workflows/diagnostics-image-build.yaml b/.github/workflows/diagnostics-image-build.yaml index a5d08bfa..1db7503e 100644 --- a/.github/workflows/diagnostics-image-build.yaml +++ b/.github/workflows/diagnostics-image-build.yaml @@ -3,7 +3,9 @@ name: Diagnostics Image Build on: push: -concurrency: ${{ github.workflow }}-${{ github.ref }} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: build-docker-image: diff --git a/.github/workflows/diagnostics-image-release.yaml b/.github/workflows/diagnostics-image-release.yaml index fc6ccba4..3a19dbc5 100644 --- a/.github/workflows/diagnostics-image-release.yaml +++ b/.github/workflows/diagnostics-image-release.yaml @@ -8,7 +8,9 @@ on: tags: - '@powersync/diagnostics-app*' -concurrency: ${{ github.workflow }}-${{ github.ref }} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: release-docker-image: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 813d1d01..9ee0168a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,9 @@ on: branches: - main -concurrency: ${{ github.workflow }}-${{ github.ref }} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: release: diff --git a/.github/workflows/test-isolated.yaml b/.github/workflows/test-isolated.yaml index 86c95242..f570d599 100644 --- a/.github/workflows/test-isolated.yaml +++ b/.github/workflows/test-isolated.yaml @@ -4,7 +4,9 @@ name: Test Isolated Demos on: push: -concurrency: ${{ github.workflow }}-${{ github.ref }} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: test: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8e69b5f5..13fc88cd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,9 @@ name: Test Packages on: push: -concurrency: ${{ github.workflow }}-${{ github.ref }} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: test: