-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.goreleaser.yml
78 lines (78 loc) · 1.62 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
74
75
76
77
78
version: 2
before:
hooks:
- go mod download
builds:
-
main: cmd/gomerge/main.go
ldflags:
- -s -w
- -X main.Version={{ .Version }}
- -X main.Build={{ .Commit }}
- -X main.BuildDate={{ .Date }}
- -X main.License={{ .Date }}
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm
- arm64
- 386
- riscv64
goarm:
- 5
- 6
- 7
archives:
-
id: gomerge
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}"
changelog:
sort: asc
use: github
filters:
exclude:
- '^docs:'
- '^test:'
- '^typo|TYPO'
- typo
- Merge pull request
- Merge remote-tracking branch
- Merge branch
groups:
- title: 'New Features'
regexp: "^.*FEAT|WATCHER|CLI|EVENT|UTILS|CMD[(\\w)]*:+.*$"
order: 0
- title: 'Fixes'
order: 10
regexp: "^.*FIX|CHORE|BUGFIX|EXAMPLES|BUG[(\\w)]*:+.*$"
- title: 'Workflow Updates'
regexp: "^.*ACTIONS|ACTION[(\\w)]*:+.*$"
order: 20
- title: 'Other things'
order: 999
nfpms:
-
vendor: Cian911
maintainer: [email protected]
formats:
- deb
- rpm
brews:
-
goarm: 6
repository:
owner: Cian911
name: homebrew-gomerge
directory: Formula
commit_author:
name: Cian911
email: [email protected]
homepage: "https://github.com/Cian911/gomerge"
description: |
Gomerge is a tool to quickly merge several pull requests from your terminal. The intention of this tool is to simplfy, and eventually automate the merging of github pull requests. This tool should be able to run on most systems.