Skip to content

Commit 52e1177

Browse files
committed
fix(goreleaser): updates regexp grouping pattern
1 parent c5e2247 commit 52e1177

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.goreleaser.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ changelog:
5252
- "^test:"
5353
groups:
5454
- title: Features
55-
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
55+
regexp: "^feat.*"
5656
order: 0
5757
- title: "Bug fixes"
58-
regexp: '^.*?bug(\([[:word:]]+\))??!?:.+$'
58+
regexp: "^bug.*"
5959
order: 1
6060
- title: "Docs"
61-
regexp: '^.*?doc(\([[:word:]]+\))??!?:.+$'
61+
regexp: "^doc.*"
6262
order: 2
6363
- title: Others
6464
order: 999

0 commit comments

Comments
 (0)