forked from newrelic/nrdot-collector-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
49 lines (49 loc) · 1.61 KB
/
.goreleaser.yaml
File metadata and controls
49 lines (49 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: 2
builds:
- skip: true
release:
draft: true
use_existing_draft: true
mode: replace
header: |
###### !!! REMOVE THIS HEADER BEFORE PUBLISHING !!!
## Release Checklist
### Draft Checklist
- [ ] Tests from last nightly build have passed and are stable.
- [ ] Release notes below have been reviewed and edited as needed.
- [ ] Binaries/Archives/Packages.
- [ ] Artifacts for each distro have been attached to the draft release
- [ ] Any new artifact type is attached to the draft release (we filter on upload for expected file types)
- [ ] Docker images for each distro have been published to ECR
### Publish Checklist
- [ ] Checklist has been reviewed and all items are complete.
- [ ] Draft header has been removed.
- [ ] Docker images for each distro have been published to docker hub and tagged as latest
- [ ] Slack notifications have been sent to appropriate channels
- [ ] PR has been generated to update docs in [docs.newrelic.com](https://github.com/newrelic/docs-website/pulls)
###### !!! REMOVE THIS HEADER BEFORE PUBLISHING !!!
changelog:
sort: asc
use: github
format: "{{ .Message }}"
groups:
- title: Features
regexp: "^.*(feat:|feat\\/|feat(\\([^\\)]*\\)):).*"
order: 0
- title: Bug Fixes
regexp: "^.*(fix:|fix\\/|fix(\\([^\\)]*\\)):).*"
order: 1
- title: Docs
regexp: "^.*(docs:|docs\\/|docs(\\([^\\)]*\\)):).*"
order: 2
filters:
exclude:
- "^ci"
- "^test"
- "^chore"
- "^refactor"
- "^style"
- "^perf"
- "^build"
- "^revert"
- "^deps"