Skip to content

Commit

Permalink
Only allow one concurrent pipeline run for different publish pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
TIL-EBP committed Nov 19, 2024
1 parent c2b50b7 commit 16664a0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ on:
description: "Tag the commit and published image with `edge`."
default: true

concurrency:
group: "publish-edge"

permissions: write-all

env:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ on:
required: false
default: "edge"

concurrency:
group: "publish-rc"

permissions: write-all

env:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ on:
Assign the `release-candidate` tag to this release.
default: true

concurrency:
group: "release"

permissions: write-all

env:
Expand Down

0 comments on commit 16664a0

Please sign in to comment.