Skip to content

Commit

Permalink
build(goreleaser): tweak changelog generation
Browse files Browse the repository at this point in the history
Signed-off-by: nscuro <nscuro@protonmail.com>
  • Loading branch information
nscuro committed Feb 7, 2022
1 parent 9082cd7 commit 338f68e
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .goreleaser.yml
Expand Up @@ -9,8 +9,24 @@ milestones:
- name_template: "{{ .Tag }}"
close: true
changelog:
use: github
sort: asc
groups:
- title: Features
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 '

0 comments on commit 338f68e

Please sign in to comment.