Skip to content

Commit 1abd549

Browse files
limit concurrency for static/docker builds (#711)
1 parent 15a600c commit 1abd549

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/docker.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
name: Build Docker images
3+
concurrency:
4+
cancel-in-progress: true
5+
group: ${{ github.workflow }}-${{ github.ref }}
36
on:
47
pull_request:
58
branches:

.github/workflows/static.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
name: Build binary releases
3+
concurrency:
4+
cancel-in-progress: true
5+
group: ${{ github.workflow }}-${{ github.ref }}
36
on:
47
pull_request:
58
branches:

0 commit comments

Comments
 (0)