File tree Expand file tree Collapse file tree 1 file changed +51
-7
lines changed
Expand file tree Collapse file tree 1 file changed +51
-7
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,10 @@ before:
55 - go mod tidy
66
77builds :
8- - env :
9- - CGO_ENABLED=0
10- goos :
11- - linux
12- - windows
13- - darwin
8+ - skip : true
149
1510archives :
16- - formats : [ tar.gz]
11+ - format : tar.gz
1712 # this name template makes the OS and Arch compatible with the results of `uname`.
1813 name_template : >-
1914 {{ .ProjectName }}_
@@ -29,7 +24,56 @@ archives:
2924
3025changelog :
3126 sort : asc
27+ use : github
3228 filters :
3329 exclude :
3430 - " ^docs:"
3531 - " ^test:"
32+ - " ^ci:"
33+ - " ^chore:"
34+ - " ^style:"
35+ - " ^refactor:"
36+ - " merge conflict"
37+ - Merge pull request
38+ - Merge remote-tracking branch
39+ - Merge branch
40+ groups :
41+ - title : Features
42+ regexp : ' ^.*?feat(\([[:word:]]+\))??!?:.+$'
43+ order : 0
44+ - title : ' Bug fixes'
45+ regexp : ' ^.*?fix(\([[:word:]]+\))??!?:.+$'
46+ order : 1
47+ - title : ' Performance improvements'
48+ regexp : ' ^.*?perf(\([[:word:]]+\))??!?:.+$'
49+ order : 2
50+ - title : Others
51+ order : 999
52+
53+ release :
54+ github :
55+ owner : gomantics
56+ name : sx
57+
58+ draft : false
59+ replace_existing_draft : true
60+ target_commitish : ' {{ .Commit }}'
61+ header : |
62+ ## What's Changed
63+
64+ footer : |
65+
66+ ### Installation
67+
68+ ```bash
69+ go get github.com/gomantics/sx@{{ .Tag }}
70+ ```
71+
72+ ### Usage
73+
74+ Import the library in your Go code:
75+ ```go
76+ import "github.com/gomantics/sx"
77+ ```
78+
79+ **Full Changelog**: https://github.com/gomantics/sx/compare/{{ .PreviousTag }}...{{ .Tag }}
You can’t perform that action at this time.
0 commit comments