workflow skip test [skip ci]

This commit is contained in:
Matteias Collet 2020-06-30 01:28:57 +02:00
parent 1961715331
commit 9791f26a94

View file

@ -8,7 +8,7 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
if: ${{ (github.ref == 'refs/heads/master') && (! contains(toJSON(github.event.commits.*.msg), '[skip ci]')) }}
if: ${{ github.ref == 'refs/heads/master' && !contains(github.event.head_commit.message, '[skip ci]') }}
steps:
- name: Checkout
uses: actions/checkout@v1