diff options
author | Josh Spicer <joshspicer@github.com> | 2022-06-03 17:54:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-03 17:54:31 +0300 |
commit | ca1a334e8b07e3a8e0d8984418a5a58dd9f40eac (patch) | |
tree | c194b1dd9397a0c446b3405848314f20ba02429c /.github/workflows/test-pr.yaml | |
parent | 3b55d6e958b0554289e272511e57e14880d5f526 (diff) |
Add CI ignore
Diffstat (limited to '.github/workflows/test-pr.yaml')
-rw-r--r-- | .github/workflows/test-pr.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/test-pr.yaml b/.github/workflows/test-pr.yaml index cb55100..22c04ef 100644 --- a/.github/workflows/test-pr.yaml +++ b/.github/workflows/test-pr.yaml @@ -1,10 +1,11 @@ -name: "Test updated features (PR)" +name: "(PR) Test Updated Features" on: pull_request: jobs: detect-changes: runs-on: ubuntu-latest + if: "!contains(github.event.head_commit.message, 'no-ci') && !contains(github.event.head_commit.message, 'CI ignore')" outputs: features: ${{ steps.filter.outputs.changes }} steps: |