Skip to content

Commit 3ec67db

Browse files
authored
[OGUI-1894] Add option to stop ongoing workflows if new commit and add Isaac as default reviewer (#2158)
- if a new commit is pushed to a branch that has ongoing GH actions, these actions will be stopped in favour of the newly triggered ones - added @isaachilly as default code reviewer
1 parent ca5d12b commit 3ec67db

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
* @graduta
2+
* @isaachilly

.github/workflows/bookkeeping.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
branches:
1111
- main
1212

13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
1317
jobs:
1418
parallel_tests:
1519
name: ${{ matrix.test_type }}

.github/workflows/docker.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
permissions:
1010
contents: read
1111

12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
1216
jobs:
1317
linter:
1418
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)