Skip to content

Commit

Permalink
fix!: support exclamation mark in conventional commits (#1105)
Browse files Browse the repository at this point in the history
Support exclamation mark in conventional commits
  • Loading branch information
vbreuss committed Mar 17, 2024
1 parent 4733ab5 commit 6098a2b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -89,7 +89,9 @@ jobs:
github.event_name == 'push' &&
(
startsWith(github.event.head_commit.message, 'feat:') ||
startsWith(github.event.head_commit.message, 'feat!:') ||
startsWith(github.event.head_commit.message, 'fix:') ||
startsWith(github.event.head_commit.message, 'fix!:') ||
contains(github.event.head_commit.message, 'breaking change')
)
needs: [pack]
Expand Down

0 comments on commit 6098a2b

Please sign in to comment.