Skip to content

Commit

Permalink
ci: Add [skip ci] job
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris committed Jan 13, 2020
1 parent 2d09e75 commit 25dac88
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@ on:
- master

jobs:
skipci:
runs-on: ubuntu-18.04
steps:
- run: echo "[Skip CI] ${{ contains(github.event.head_commit.message, '[skip ci]') }}"

code-health:
runs-on: ubuntu-18.04
if: contains(github.event.head_commit.message, '[skip ci]') == false
steps:

- uses: actions/checkout@v2
Expand Down

0 comments on commit 25dac88

Please sign in to comment.