From c17d43c6a4401cec7d7e0e721eb31f227e46062e Mon Sep 17 00:00:00 2001 From: Craigory Coppola Date: Fri, 25 Apr 2025 14:01:18 -0400 Subject: [PATCH] fix(repo): don't cancel running jobs on master when new branch merged (#30871) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 085219bc27..0118372974 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true + cancel-in-progress: ${{ !contains(github.event.type, 'push')}} env: NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}