Skip to content

Commit 2379ca3

Browse files
authored
Merge pull request #85 from ddelnano/ddelnano/add-github-release-note-autogeneration
Add configuration for github release generation
2 parents 524ef18 + 58fc193 commit 2379ca3

2 files changed

Lines changed: 16 additions & 3 deletions

File tree

.github/release.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
changelog:
2+
categories:
3+
- title: Breaking Changes 🛠
4+
labels:
5+
- breaking-change
6+
- title: New Features 🎉
7+
labels:
8+
- enhancement
9+
- title: Bug fixes
10+
labels:
11+
- bug
12+
- title: Other Changes
13+
labels:
14+
- "*"

.goreleaser.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ env:
44
- CGO_ENABLED=0
55
before:
66
hooks:
7-
# TODO(ddelnano): for now there aren't tests to run
8-
# - go test ./...
7+
- go test ./...
98
# As part of the release doc files are included as a separate deliverable for
109
# consumption by Packer.io. To include a separate docs.zip uncomment the following command.
1110
#- make ci-release-docs
@@ -68,7 +67,7 @@ signs:
6867
- "--detach-sign"
6968
- "${artifact}"
7069
release:
71-
draft: true
70+
draft: false
7271

7372
changelog:
7473
skip: true

0 commit comments

Comments
 (0)