forked from ubiquiti-community/go-unifi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
68 lines (60 loc) · 1.46 KB
/
Copy path.goreleaser.yaml
File metadata and controls
68 lines (60 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
version: 2
before:
hooks:
- "go mod tidy"
- "go generate ./..."
builds:
- skip: true
changelog:
use: github
sort: asc
abbrev: 0
groups:
- title: Features
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: "Bug Fixes"
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: "Performance Improvements"
regexp: '^.*?perf(\([[:word:]]+\))??!?:.+$'
order: 2
- title: "Refactors"
regexp: '^.*?refactor(\([[:word:]]+\))??!?:.+$'
order: 3
- title: "Documentation"
regexp: '^.*?docs(\([[:word:]]+\))??!?:.+$'
order: 4
- title: "Build & CI"
regexp: '^.*?(build|ci)(\([[:word:]]+\))??!?:.+$'
order: 5
- title: Other Work
order: 999
filters:
exclude:
- "^test:"
- "^chore:"
- "merge conflict"
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
release:
github:
owner: ubiquiti-community
name: go-unifi
draft: false
prerelease: auto
mode: append
header: |
## UniFi Go Client {{ .Tag }} ({{ .Date }})
Welcome to this release of the UniFi Go Client library!
footer: |
## Installation
To use this version in your Go project:
```bash
go get github.com/ubiquiti-community/go-unifi@{{ .Tag }}
```
**Full Changelog**: https://github.com/ubiquiti-community/go-unifi/compare/{{ .PreviousTag }}...{{ .Tag }}
name_template: "{{ .Tag }}"