From 94e012a9f23b60b6662d5a107f74f0733c65f546 Mon Sep 17 00:00:00 2001 From: Josh Usiskin <56369778+jusiskin@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:46:29 -0500 Subject: [PATCH] ci: prevent concurrent E2E runs for PR merges and release bumps (#445) Signed-off-by: Josh Usiskin <56369778+jusiskin@users.noreply.github.com> Co-authored-by: Yutong Li <52769999+YutongLi291@users.noreply.github.com> --- .github/workflows/release_bump.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release_bump.yml b/.github/workflows/release_bump.yml index 0e3ca704..5d7ba94d 100644 --- a/.github/workflows/release_bump.yml +++ b/.github/workflows/release_bump.yml @@ -55,6 +55,8 @@ jobs: branch: mainline environment: mainline os: linux + concurrency: + group: linuxe2e WindowsE2ETests: needs: UnitTests @@ -69,6 +71,8 @@ jobs: branch: mainline environment: mainline os: windows + concurrency: + group: windowse2e Bump: needs: [LinuxE2ETests, WindowsE2ETests, WindowsIntegrationTests]