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 93d247f commit 36439e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
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: "! contains(github.event.head_commit.message, 'docs') && ! contains(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: "contains(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: "contains(github.event.head_commit.message, 'trivial')"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 36439e2

Please sign in to comment.