ci: extend concurrency control to all long jobs

This commit is contained in:
Ankush Menat 2021-08-27 23:08:09 +05:30
parent d0099985fc
commit 132864a776
No known key found for this signature in database
GPG key ID: 8EA82E09BBD13AAF
3 changed files with 10 additions and 1 deletions

View file

@ -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

View file

@ -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

View file

@ -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