Skip to content

Commit

Permalink
skip:build update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewoestreich committed Jun 26, 2021
1 parent 1e9b7d5 commit af77c27
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
#
# If the commit message starts with "skip:build" we will skip this action
#
# If the commit message starts with "Release " we skip build
#

name: Build

Expand All @@ -14,7 +16,9 @@ on:

jobs:
build:
if: startsWith(github.event.head_commit.message, 'skip:build') == false
if: |
startsWith(github.event.head_commit.message, 'skip:build') == false ||
startsWith(github.event.head_commit.message, 'Release ') == false
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit af77c27

Please sign in to comment.