[skip-ci]

This commit is contained in:
Matteias Collet 2020-06-30 01:19:15 +02:00
parent 95917257c1
commit 463c875dbf
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
name: Build Project
name: Build
on:
push:

View file

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