Update minify-map-json.yml

use if statement syntax from https://github.com/marketplace/actions/skip-based-on-commit-message
This commit is contained in:
Hugh Rundle 2021-01-29 10:36:44 +11:00 committed by GitHub
parent 77d005c73c
commit 6aa7624932
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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