Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit b708ea7

Browse files
committed
[+] add concurrency clause to GHA workflows
1 parent f330838 commit b708ea7

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Build & Test
22
on:
33
workflow_dispatch:
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610

711
test-docker-images:

.github/workflows/docker.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
- 'master'
1212
workflow_dispatch:
1313

14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
cancel-in-progress: true
17+
1418
jobs:
1519
docker:
1620
if: true # false to skip job during debug

0 commit comments

Comments
 (0)