diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2020-10-06 01:52:49 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-06 04:52:49 +0000 |
commit | aca1fae55a8009627888944afeb69f0a0141c160 (patch) | |
tree | 356c0b5df69201ea939cdb28bb710047c4e432bc /.github | |
parent | 37758826ff64fb93324675d81ef724e04c474b39 (diff) | |
download | Nim-aca1fae55a8009627888944afeb69f0a0141c160.tar.gz |
GitHub Actions Skip CI (#15289)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci_docs.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ci_packages.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ci_ssl.yml | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci_docs.yml b/.github/workflows/ci_docs.yml index d3d0ba612..6b21475f6 100644 --- a/.github/workflows/ci_docs.yml +++ b/.github/workflows/ci_docs.yml @@ -28,6 +28,8 @@ on: jobs: build: + if: | + !contains(format('{0} {1} {2}', github.event.head_commit.message, github.event.pull_request.title), '[skip ci]') strategy: fail-fast: false matrix: diff --git a/.github/workflows/ci_packages.yml b/.github/workflows/ci_packages.yml index 8a1a8a81f..a59bcee9d 100644 --- a/.github/workflows/ci_packages.yml +++ b/.github/workflows/ci_packages.yml @@ -3,6 +3,8 @@ on: [push, pull_request] jobs: build: + if: | + !contains(format('{0} {1} {2}', github.event.head_commit.message, github.event.pull_request.title), '[skip ci]') strategy: fail-fast: false matrix: diff --git a/.github/workflows/ci_ssl.yml b/.github/workflows/ci_ssl.yml index fe5faded6..070e4aa1e 100644 --- a/.github/workflows/ci_ssl.yml +++ b/.github/workflows/ci_ssl.yml @@ -12,6 +12,8 @@ on: jobs: build: + if: | + !contains(format('{0} {1} {2}', github.event.head_commit.message, github.event.pull_request.title), '[skip ci]') strategy: fail-fast: false matrix: |