diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4317df73..fb922c74 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -8,6 +8,9 @@ on: branches: [ "dev-ose" ] schedule: - cron: '22 10 * * 1' +concurrency: + group: ${{ github.ref }} + cancel-in-progress: true jobs: analyze: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b81bb4c..c1aa5b13 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,6 +3,9 @@ on: push: tags: - v* +concurrency: + group: ${{ github.ref }} + cancel-in-progress: true jobs: build: name: Create release diff --git a/.github/workflows/test-dev.yml b/.github/workflows/test-dev.yml index ce62b4e9..d0ae4254 100644 --- a/.github/workflows/test-dev.yml +++ b/.github/workflows/test-dev.yml @@ -1,6 +1,10 @@ name: Development tests on: [push, pull_request] +concurrency: + group: ${{ github.ref }} + cancel-in-progress: true jobs: + test: name: Tests without emulator runs-on: ubuntu-latest