diff --git a/.goreleaser.yml b/.goreleaser.yml index 8ec56ab9..de84e0f3 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -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 diff --git a/GNUmakefile b/GNUmakefile index fe45fb54..0e23f168 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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