From 6aa762493293882c59403aff9c270fc22e1b0b82 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Fri, 29 Jan 2021 10:36:44 +1100 Subject: [PATCH] Update minify-map-json.yml use if statement syntax from https://github.com/marketplace/actions/skip-based-on-commit-message --- .github/workflows/minify-map-json.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/minify-map-json.yml b/.github/workflows/minify-map-json.yml index 0928ecd..5c55850 100644 --- a/.github/workflows/minify-map-json.yml +++ b/.github/workflows/minify-map-json.yml @@ -8,7 +8,7 @@ on: workflow_dispatch: jobs: processJson: - if: ${{ github.event.commits.*.message.includes('from hughrun/geo-to-topo') != true }} + if: "!contains(github.event.head_commit.message 'from hughrun/geo-to-topo')" runs-on: ubuntu-latest steps: - uses: actions/checkout@v2