You need to sign in or sign up before continuing.
Commit 7953f679 authored by Peter Parente's avatar Peter Parente

Support ci skip in PRs

parent a7d6d765
......@@ -20,7 +20,9 @@ jobs:
build:
name: Build Docker Images
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message , 'ci skip')"
if: >
"!contains(github.event.head_commit.message, 'ci skip') and
!contains(github.event.pull_request.title, 'ci skip')"
steps:
- name: Clone Main Repo
uses: actions/checkout@v2
......
......@@ -16,7 +16,9 @@ jobs:
build:
name: Build Sphinx Documentation
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message , 'ci skip')"
if: >
"!contains(github.event.head_commit.message, 'ci skip') and
!contains(github.event.pull_request.title, 'ci skip')"
steps:
- name: Checkout Repo
uses: actions/checkout@v2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment