Skip to content

Commit 2c75682

Browse files
committed
docs(tutorials/github_actions): fix workflow to not skip commits with bump word
1 parent 18f3231 commit 2c75682

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/tutorials/github_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
jobs:
2222
build:
23-
if: "!contains(github.event.head_commit.message, 'bump')"
23+
if: "!startsWith(github.event.head_commit.message, 'bump:')"
2424
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:

0 commit comments

Comments
 (0)