Skip to content

Commit

Permalink
fix(goreleaser): updates regexp grouping pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
struckchure committed Aug 21, 2024
1 parent c5e2247 commit 52e1177
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ changelog:
- "^test:"
groups:
- title: Features
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
regexp: "^feat.*"
order: 0
- title: "Bug fixes"
regexp: '^.*?bug(\([[:word:]]+\))??!?:.+$'
regexp: "^bug.*"
order: 1
- title: "Docs"
regexp: '^.*?doc(\([[:word:]]+\))??!?:.+$'
regexp: "^doc.*"
order: 2
- title: Others
order: 999

0 comments on commit 52e1177

Please sign in to comment.