From 5bb00a75f5f910ded566216713922caa704ce512 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 14 Mar 2022 09:40:14 -0400 Subject: CI: Do not "always" run GitHub Actions workflows This way, if a branch is force-pushed in an open PR, running workflows can be canceled. https://docs.github.com/en/actions/learn-github-actions/expressions#always "Always - Causes the step to always execute, and returns true, even when canceled" --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 930a3f7d5c..fd678f1332 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -15,7 +15,7 @@ concurrency: jobs: build_and_test_serenity: runs-on: ${{ matrix.os }} - if: always() && github.repository == 'SerenityOS/serenity' + if: github.repository == 'SerenityOS/serenity' strategy: fail-fast: false matrix: -- cgit v1.2.3