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:
parent
77d005c73c
commit
6aa7624932
2
.github/workflows/minify-map-json.yml
vendored
2
.github/workflows/minify-map-json.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue