From a99456212192287263638064f818a319b149d730 Mon Sep 17 00:00:00 2001 From: dundargoc Date: Tue, 20 Feb 2024 13:29:46 +0100 Subject: [PATCH] ci: don't cancel jobs on master It can be useful to see the full results of all master commits when trying to bisect a regression. --- .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 67f62bad..45ec74f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true + cancel-in-progress: ${{ github.event_name != 'push' }} jobs: checks: