From 11fc97622f275f83e1a99f528d25d9e9076cf632 Mon Sep 17 00:00:00 2001 From: dillanb-hashi Date: Fri, 19 Dec 2025 09:32:46 -0700 Subject: [PATCH] chore(e2e): Stop running current builds with new pushes (#6309) Added a concurrency check in the github workflow to stop running build action if new changes are pushed. --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d6980f20cd..8e000acbec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,6 +11,10 @@ on: workflow_call: workflow_dispatch: +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + env: PKG_NAME: "boundary"