mirror of https://github.com/aminya/setup-cpp
ci: add skip hooks to github actions
This commit is contained in:
parent
0646930b89
commit
a8a6ade4ca
|
@ -9,7 +9,7 @@ on:
|
|||
|
||||
jobs:
|
||||
Test:
|
||||
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
||||
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip test]') }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
@ -81,6 +81,7 @@ jobs:
|
|||
continue-on-error: ${{ contains(matrix.os, 'ubuntu-18.04') }}
|
||||
|
||||
Docker:
|
||||
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip docker]') }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
Loading…
Reference in New Issue