Skip to content

Commit

Permalink
build(goreleaser): fix changelog exclude regexes
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Penner <[email protected]>
  • Loading branch information
matthewpi committed May 20, 2024
1 parent 8c9dcc3 commit 8891b63
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ changelog:
sort: asc
filters:
exclude:
- '^chore(:|\\()'
- '^perf(:|\\()'
- '^readme(:|\\()'
- '^refactor(:|\\()'
- '^style(:|\\()'
- '^tests?(:|\\()'
- '^chore(:|\()'
- '^perf(:|\()'
- '^readme(:|\()'
- '^refactor(:|\()'
- '^style(:|\()'
- '^tests?(:|\()'
- '^\w+\s+' # a hack to remove commit messages without colons thus don't correspond to a package
groups:
- title: Added
Expand Down

0 comments on commit 8891b63

Please sign in to comment.