skip all workflows with [skip ci] in commit message

This commit is contained in:
alexey.lysiuk 2020-12-28 10:50:28 +02:00
parent 13c923dd49
commit 4bcf1301e1
2 changed files with 2 additions and 0 deletions

View file

@ -4,6 +4,7 @@ on: [push, pull_request]
jobs:
linter:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View file

@ -4,6 +4,7 @@ on: [push, pull_request]
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
name: ${{ matrix.config.name }}
runs-on: "macos-latest"
steps: