Skip to content

Commit b321e9c

Browse files
committed
chore: make github actions single concurrency
1 parent 8fd7c06 commit b321e9c

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/coverage.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Coverage
22

33
on: push
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
Coverage:
711
runs-on: ubuntu-latest

.github/workflows/credo.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Credo
22

33
on: push
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
Credo:
711
runs-on: ubuntu-latest

.github/workflows/dialyzer.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Dialyzer
22

33
on: push
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
Dialyzer:
711
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)