-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
73 lines (61 loc) · 1.87 KB
/
.goreleaser.yml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
project_name: gosl
env_files:
github_token: ~/.github_token
before:
hooks:
- go mod download
- go mod tidy
- go run golang.org/x/vuln/cmd/govulncheck@latest -test ./...
- go run github.com/google/osv-scanner/cmd/osv-scanner@latest -r .
- go run github.com/securego/gosec/v2/cmd/gosec@latest -exclude=G107 -quiet ./...
- go run github.com/go-critic/go-critic/cmd/gocritic@latest check -enableAll ./...
builds:
- skip: true
release:
draft: true
replace_existing_draft: true
target_commitish: "{{ .Commit }}"
discussion_category_name: General
prerelease: auto
mode: replace
header: |
## ⚙️ The `{{ .Tag }}` release
footer: |
## Install or update
```console
go get -u github.com/koddr/gosl
```
> 💡 Note: Basic usage and full code examples of all functions of the `gosl` package, you can find on the [pkg.go.dev][go_dev_url] page.
## Your help to improve project
I'd be truly grateful for help with:
- Creating a new Go snippets (with tests & benchmarks)
- Improve an existing Go snippets, tests, or benchmarks
- Feature requests with interesting snippets that make life easier when writing Go programs that would be good to add
Your PRs & issues are welcome! Thanks 😉
[go_dev_url]: https://pkg.go.dev/github.com/koddr/gosl
disable: false
skip_upload: true
changelog:
use: git
sort: asc
abbrev: -1
filters:
exclude: [ "^*.md", "^*.yml" ]
groups:
- title: Features
regexp: ^.*?(F|f)eature.*?$
order: 0
- title: Bug fixes
regexp: ^.*?((B|b)ug)|((F|f)ix).*?$
order: 1
- title: Improvements
regexp: ^.*?(I|i)mprove.*?$
order: 2
- title: Updates
regexp: ^.*?(U|u)pdate.*?$
order: 3
- title: Security issues
regexp: ^.*?(S|s)ecurity.*?$
order: 4
- title: Others
order: 999