Skip to content

Commit

Permalink
ci: Automate changelog generation with goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
anmoel committed Oct 17, 2022
1 parent 4f3fc98 commit c53ab20
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,16 @@ signs:
release:
draft: false
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
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ darwin-build-install: fmtcheck
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 $(GOBUILD) -o ~/.terraform.d/plugins/darwin_amd64/terraform-provider-nexus -v

test: fmt
go test -i $(TEST) || exit 1
go test $(TEST) || exit 1
echo $(TEST) | \
xargs -t -n4 go test -cover $(TESTARGS) -timeout=30s -parallel=4

Expand Down

0 comments on commit c53ab20

Please sign in to comment.