Skip to content

Commit

Permalink
build(goreleaser): use groups for changelog (#121)
Browse files Browse the repository at this point in the history
Signed-off-by: nscuro <nscuro@protonmail.com>
  • Loading branch information
nscuro committed Feb 5, 2022
1 parent 684e015 commit 519f53d
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,24 @@ milestones:
close: true

changelog:
use: github
sort: asc
groups:
- title: Enhancements
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: Fixes
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: Building and Packaging
regexp: "^.*build[(\\w)]*:+.*$"
order: 2
- title: Documentation
regexp: "^.*docs[(\\w)]*:+.*$"
order: 3
- title: Others
order: 999
filters:
exclude:
- '^docs:'
- '^test:'
- '^Merge '
- '^Merge '

0 comments on commit 519f53d

Please sign in to comment.