Skip to content

Commit

Permalink
trivial: f
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Dec 6, 2020
1 parent 310748a commit 4434972
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
compile:
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, 'docs') && ! contains(github.event.head_commit.message, 'trivial') "
if: "! startsWith(github.event.head_commit.message, 'docs') && ! startsWith(github.event.head_commit.message, 'trivial') "
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -29,7 +29,7 @@ jobs:

docs:
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, 'docs')"
if: "startsWith(github.event.head_commit.message, 'docs')"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -48,7 +48,7 @@ jobs:

trivial:
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, 'trivial')"
if: "startsWith(github.event.head_commit.message, 'trivial')"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 4434972

Please sign in to comment.