Skip to content

Commit 792e420

Browse files
committed
Allow CI to be skipped if the commit message starts with [skip ci].
1 parent ff97780 commit 792e420

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/build_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ defaults:
99

1010
jobs:
1111
test:
12+
if: ${{ !startsWith(github.event.head_commit.message, '[skip ci]') || github.event_name == 'pull_request' }}
1213
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
1314
runs-on: ${{ matrix.os }}
1415
strategy:

0 commit comments

Comments
 (0)