Do not run CI for commits starting with 'chore'

This commit is contained in:
Patrik Svensson 2022-07-01 12:36:48 +02:00
parent 8ca602b986
commit 47ef9a685e

View File

@ -20,7 +20,10 @@ jobs:
build:
name: Build
if: "!contains(github.event.head_commit.message, 'skip-ci') || startsWith(github.ref, 'refs/tags/')"
if: |
(!contains(github.event.head_commit.message, 'skip-ci')
&& !contains(github.event.head_commit.message, 'chore'))
|| startsWith(github.ref, 'refs/tags/')
strategy:
matrix:
kind: ['linux', 'windows', 'macOS']