Skip to content

Commit

Permalink
Add useful bits to goreleaser config
Browse files Browse the repository at this point in the history
  • Loading branch information
shearn89 committed Jul 25, 2024
1 parent 37343af commit 5f12326
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 @@ -55,6 +55,21 @@ release:
- glob: 'terraform-registry-manifest.json'
name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'
# If you want to manually examine the release before its live, uncomment this line:
# draft: true
draft: true
changelog:
skip: true
use: github
groups:
- title: Breaking changes
regexp: "^!.*$"
order: 0
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
order: 1
- title: 'Bug fixes'
regexp: "^.*fix[(\\w)]*:+.*$"
order: 2
- title: Other changes
order: 999
filters:
exclude:
- '^Merge'

0 comments on commit 5f12326

Please sign in to comment.