ci: extend concurrency control to all long jobs
This commit is contained in:
parent
d0099985fc
commit
132864a776
3 changed files with 10 additions and 1 deletions
5
.github/workflows/patch-mariadb-tests.yml
vendored
5
.github/workflows/patch-mariadb-tests.yml
vendored
|
|
@ -2,6 +2,11 @@ name: Patch
|
|||
|
||||
on: [pull_request, workflow_dispatch]
|
||||
|
||||
|
||||
concurrency:
|
||||
group: patch-mariadb-develop-${{ github.event.number }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-18.04
|
||||
|
|
|
|||
2
.github/workflows/server-mariadb-tests.yml
vendored
2
.github/workflows/server-mariadb-tests.yml
vendored
|
|
@ -7,7 +7,7 @@ on:
|
|||
branches: [ develop ]
|
||||
|
||||
concurrency:
|
||||
group: server-mariadb-${{ github.event.number }}
|
||||
group: server-mariadb-develop-${{ github.event.number }}
|
||||
cancel-in-progress: true
|
||||
|
||||
|
||||
|
|
|
|||
4
.github/workflows/ui-tests.yml
vendored
4
.github/workflows/ui-tests.yml
vendored
|
|
@ -6,6 +6,10 @@ on:
|
|||
push:
|
||||
branches: [ develop ]
|
||||
|
||||
concurrency:
|
||||
group: ui-develop-${{ github.event.number }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-18.04
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue