ci: don't skip releases based on commit body (#24554)

This commit is contained in:
Bobbie Goede 2023-12-01 10:57:47 +01:00 committed by GitHub
parent 03997e21dc
commit a585f27c98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -249,8 +249,8 @@ jobs:
if: |
github.event_name == 'push' &&
!contains(github.event.head_commit.message, '[skip-release]') &&
!contains(github.event.head_commit.message, 'chore') &&
!contains(github.event.head_commit.message, 'docs')
!startsWith(github.event.head_commit.message, 'chore') &&
!startsWith(github.event.head_commit.message, 'docs')
needs:
- lint
- build