Skip to content

Commit

Permalink
internal: Add groupings to changelog (#36)
Browse files Browse the repository at this point in the history
### Description

OB-XXX Please explain the changes you made here.

### Checklist
- [ ] Created tests which fail without the change (if possible)
- [ ] Extended the README / documentation, if necessary
  • Loading branch information
obs-gh-alexlew authored Jun 13, 2024
1 parent 5bb573c commit 2ea5950
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,30 @@ archives:
dst: "connections/host_monitoring"

changelog:
use: github
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
groups:
- title: Features
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: "Bug Fixes"
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: "Configuration Updates"
regexp: '^.*?config(\([[:word:]]+\))??!?:.+$'
order: 2
- title: "Enhancements"
regexp: '^.*?internal(\([[:word:]]+\))??!?:.+$'
order: 3
- title: "Dependency Updates"
regexp: '^.*?build\(deps\)(\([[:word:]]+\))??!?:.+$'
order: 4
- title: Others
order: 999

nfpms:
- id: default
Expand Down

0 comments on commit 2ea5950

Please sign in to comment.