Fix workflow concurrency

This commit is contained in:
Ricki Hirner 2023-05-17 22:15:07 +02:00
parent e60723042b
commit 8923f9b1ad
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ on:
schedule:
- cron: '22 10 * * 1'
concurrency:
group: ${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:

View File

@ -4,7 +4,7 @@ on:
tags:
- v*
concurrency:
group: ${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:

View File

@ -1,7 +1,7 @@
name: Development tests
on: [push, pull_request]
concurrency:
group: ${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: