Skip to content

Commit 6098a2b

Browse files
authored
fix!: support exclamation mark in conventional commits (#1105)
Support exclamation mark in conventional commits
1 parent 4733ab5 commit 6098a2b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ jobs:
8989
github.event_name == 'push' &&
9090
(
9191
startsWith(github.event.head_commit.message, 'feat:') ||
92+
startsWith(github.event.head_commit.message, 'feat!:') ||
9293
startsWith(github.event.head_commit.message, 'fix:') ||
94+
startsWith(github.event.head_commit.message, 'fix!:') ||
9395
contains(github.event.head_commit.message, 'breaking change')
9496
)
9597
needs: [pack]

0 commit comments

Comments
 (0)