ci: missing concurrency checks

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2023-08-24 10:23:26 +02:00
parent 4ba0306c81
commit f0790796af
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7
3 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,9 @@
name: build
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
# needs push event on default branch otherwise cache is evicted when pull request is merged

View File

@ -1,5 +1,9 @@
name: deploy
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:

View File

@ -1,5 +1,9 @@
name: merge
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# open or update publishing PR when there is a push to main
on:
workflow_dispatch: