Skip to content

Commit dbf3e89

Browse files
authored
Limit CI concurrency (#524)
Saves some resources and should speed up PRs that push frequently. https://docs.github.com/en/actions/using-jobs/using-concurrency
1 parent b1b6a6e commit dbf3e89

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/maven.yml

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ env:
3636
JAVA_VERSION: 21
3737
ERRORS_THRESHOLD: 0.01
3838

39+
concurrency:
40+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
41+
cancel-in-progress: true
42+
3943
jobs:
4044
compile-and-test:
4145
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)