Skip to content

Commit dbed507

Browse files
authored
fix: nightly release condition (#1908)
1 parent fb50df0 commit dbed507

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ jobs:
180180
if: |
181181
github.event_name == 'push' &&
182182
!contains(github.event.head_commit.message, '[skip-release]') &&
183-
!contains(github.event.head_commit.message, 'chore') &&
184-
!contains(github.event.head_commit.message, 'docs')
183+
!startsWith(github.event.head_commit.message, 'chore') &&
184+
!startsWith(github.event.head_commit.message, 'docs')
185185
186186
needs:
187187
- lint

0 commit comments

Comments
 (0)