Skip to content

Commit

Permalink
build: improve changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed May 24, 2023
1 parent e01884e commit 4593dcb
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .goreleaser.yml
Expand Up @@ -217,22 +217,34 @@ changelog:
use: github
filters:
exclude:
- '^docs:'
- '^test:'
- '^chore'
- 'merge conflict'
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
groups:
- title: Dependency updates
regexp: '^.*?(feat|fix)\(deps\)!?:.+$'
order: 300
- title: 'New Features'
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 100
- title: 'Security updates'
regexp: '^.*?sec(\([[:word:]]+\))??!?:.+$'
order: 150
- title: 'Bug fixes'
regexp: "^.*fix[(\\w)]*:+.*$"
order: 10
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 200
- title: 'Documentation updates'
regexp: ^.*?doc(\([[:word:]]+\))??!?:.+$
order: 400
- title: 'Build process updates'
regexp: ^.*?build(\([[:word:]]+\))??!?:.+$
order: 400
- title: Other work
order: 999
order: 9999

checksum:
name_template: 'checksums.txt'
Expand Down

0 comments on commit 4593dcb

Please sign in to comment.