From 4c6f2f0e16f122f5dfd3cf31a83599d9691cb424 Mon Sep 17 00:00:00 2001 From: Slendy Date: Mon, 15 May 2023 15:06:08 -0500 Subject: [PATCH] Fix CI not running when it should --- .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 0c962d6b..f0eae2d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ name: Continuous Integration jobs: test: name: Build & Test - if: "!contains(github.event.head_commit.message, '[skip ci]')" + if: "!startsWith(github.event.head_commit.message, '[skip ci]')" runs-on: ${{matrix.os.fullName}} strategy: fail-fast: false