Skip to content

Commit

Permalink
ci: add skipci job [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris authored Sep 19, 2020
1 parent 5ef2d0f commit cdb9602
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,14 @@ on:
- '*.md'

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

CodeQL-Build:
runs-on: ubuntu-18.04
if: contains(github.event.head_commit.message, '[skip ci]') == false
steps:
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit cdb9602

Please sign in to comment.