Commit 7953f679 authored by Peter Parente's avatar Peter Parente

Support ci skip in PRs

parent a7d6d765
...@@ -20,7 +20,9 @@ jobs: ...@@ -20,7 +20,9 @@ jobs:
build: build:
name: Build Docker Images name: Build Docker Images
runs-on: ubuntu-latest 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: steps:
- name: Clone Main Repo - name: Clone Main Repo
uses: actions/checkout@v2 uses: actions/checkout@v2
......
...@@ -16,7 +16,9 @@ jobs: ...@@ -16,7 +16,9 @@ jobs:
build: build:
name: Build Sphinx Documentation name: Build Sphinx Documentation
runs-on: ubuntu-latest 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: steps:
- name: Checkout Repo - name: Checkout Repo
uses: actions/checkout@v2 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