[skip-ci]
This commit is contained in:
parent
95917257c1
commit
463c875dbf
2 changed files with 3 additions and 3 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Build Project
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
4
.github/workflows/deploy.yml
vendored
4
.github/workflows/deploy.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue