Adding concurrency section for a couple ci workflows

This commit is contained in:
Zach Musgrave
2022-06-08 13:48:46 -07:00
parent 1669850463
commit 60b8639df6
2 changed files with 9 additions and 0 deletions
+5
View File
@@ -4,6 +4,11 @@ on:
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ci-format-repo-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
format:
name: Format PR
@@ -7,6 +7,10 @@ on:
- 'go/**'
- 'integration-tests/**'
concurrency:
group: ci-sysbench-runner-tests-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
mysql_client_integrations_job:
runs-on: ubuntu-18.04