Skip to content

Commit

Permalink
add concurrency to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
openoms committed Dec 2, 2024
1 parent 4deaabc commit f8be1b9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/amd64-image-build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: amd64-image-build

concurrency:
group: amd64-image-build-${{ github.head_ref }}
cancel-in-progress: true

on:
push:
branches: [ "master" ]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/arm64-rpi-image-build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: arm64-rpi-image-build

concurrency:
group: arm64-rpi-image-build-${{ github.head_ref }}
cancel-in-progress: true

on:
push:
branches: [ "master" ]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/arm64-rpi5-image-build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: arm64-rpi5-image-build

concurrency:
group: arm64-rpi5-image-build-${{ github.head_ref }}
cancel-in-progress: true

on:
push:
branches: [ "master" ]
Expand Down

0 comments on commit f8be1b9

Please sign in to comment.