Skip to content

Commit fd54581

Browse files
authored
rewrote if expression to use startswith in release action
1 parent e24296e commit fd54581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

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

99
jobs:
1010
release:
11-
if: github.event.head_commit.message != 'chore(release):'* # skip standard-version auto-commits
11+
if: "!startsWith(github.event.head_commit.message, 'chore(release):')"
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)