Skip to content

Commit

Permalink
ci: prevent concurrent e2e canary runs (#475)
Browse files Browse the repository at this point in the history
Signed-off-by: Li <[email protected]>
  • Loading branch information
YutongLi291 authored Nov 13, 2024
1 parent 3927b60 commit 31ba080
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/mainline_e2e_canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
branch: mainline
environment: canary
os: linux
concurrency:
group: mainlinelinuxe2ecanary

MainlineWindowsE2ECanary:
name: Mainline Windows Canary
Expand All @@ -48,4 +50,6 @@ jobs:
repository: ${{ github.event.repository.name }}
branch: mainline
environment: canary
os: windows
os: windows
concurrency:
group: mainlinewindowse2ecanary
6 changes: 5 additions & 1 deletion .github/workflows/release_e2e_canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:
branch: release
environment: canary
os: linux
concurrency:
group: releaselinuxe2ecanary

ReleaseWindowsE2ECanary:
name: Release Windows Canary
Expand All @@ -50,4 +52,6 @@ jobs:
repository: ${{ github.event.repository.name }}
branch: release
environment: canary
os: windows
os: windows
concurrency:
group: releasewindowse2ecanary

0 comments on commit 31ba080

Please sign in to comment.