Skip to content

Commit 8ac2675

Browse files
authored
chore: Ensure only a single workflow using the same branch will run concurrently. (#146)
1 parent c4414d9 commit 8ac2675

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
pull_request:
77
branches: [main]
88

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
913
jobs:
1014
unit-test:
1115
name: Check Format and Run Unit Tests

0 commit comments

Comments
 (0)