-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.goreleaser.yml
More file actions
41 lines (38 loc) · 1016 Bytes
/
.goreleaser.yml
File metadata and controls
41 lines (38 loc) · 1016 Bytes
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
version: 2
# lib-commons/v4 is a Go library (no binary to build).
# GoReleaser is used only for changelog generation and GitHub release creation.
builds:
- skip: true
changelog:
sort: asc
filters:
exclude:
- "merge conflict"
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
groups:
- title: "Breaking Changes"
regexp: "^.*breaking[(\\w)]*:+.*$"
order: 0
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
order: 10
- title: "Improvements"
regexp: "^.*chore[(\\w)]*:+.*$"
order: 20
- title: "Bug Fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 30
- title: "Security Updates"
regexp: '^.*?sec(\([[:word:]]+\))??!?:.+$'
order: 40
- title: "Documentation Updates"
regexp: ^.*?docs(\([[:word:]]+\))??!?:.+$
order: 50
- title: "Tests"
regexp: ^.*?(test(s)?(\([[:word:]]+\))?)!?:.+$
order: 60
- title: Other Work
order: 999