From 0e04453dec11a58847795f590bb75bf0aa581426 Mon Sep 17 00:00:00 2001 From: millerm30 Date: Sat, 5 Oct 2024 07:45:46 -0230 Subject: [PATCH] adjustment adjust the if condition for proper syntax when using excalmation --- .github/workflows/pullRequest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pullRequest.yml b/.github/workflows/pullRequest.yml index ad3144e..f8da0ed 100644 --- a/.github/workflows/pullRequest.yml +++ b/.github/workflows/pullRequest.yml @@ -8,7 +8,7 @@ jobs: pull_request_test: name: pull_request_test runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, 'skip ci')" + if: ${{ !contains(github.event.pull_request.title, 'skip ci') }} steps: - uses: actions/checkout@v4