Skip to content

Commit f742d82

Browse files
committed
ci(workflows): add concurrency groups
1 parent 9632579 commit f742d82

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/maven.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
branches: [ "master" ]
88
workflow_dispatch:
99

10+
concurrency:
11+
group: 'compile'
12+
cancel-in-progress: false
13+
1014
jobs:
1115
build-and-deploy:
1216
runs-on: ubuntu-latest

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
branches: [ "master" ]
88
workflow_dispatch:
99

10+
concurrency:
11+
group: 'test'
12+
cancel-in-progress: false
13+
1014
jobs:
1115
build-and-deploy:
1216
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)