ci: dont exclude any commit from changelog
This commit is contained in:
parent
a6bb2c16b1
commit
a1f1085fb9
2 changed files with 10 additions and 20 deletions
11
.github/.goreleaser.yaml
vendored
11
.github/.goreleaser.yaml
vendored
|
|
@ -34,15 +34,14 @@ builds:
|
||||||
changelog:
|
changelog:
|
||||||
use: "git"
|
use: "git"
|
||||||
sort: "desc"
|
sort: "desc"
|
||||||
filters:
|
|
||||||
exclude:
|
|
||||||
- "^chore"
|
|
||||||
- "^ci"
|
|
||||||
- "^docs"
|
|
||||||
groups:
|
groups:
|
||||||
- title: "🚀 Features"
|
- title: "🚀 Features"
|
||||||
regexp: "^feat"
|
regexp: "^feat"
|
||||||
- title: "🐛 Bug Fixes"
|
- title: "🐛 Bug Fixes"
|
||||||
regexp: "^fix"
|
regexp: "^fix"
|
||||||
- title: "🛠 Maintenance"
|
- title: "🛠️ Maintenance"
|
||||||
regexp: "^(chore|refactor)"
|
regexp: "^(chore|refactor)"
|
||||||
|
- title: "🦾 Automation"
|
||||||
|
regexp: "^ci"
|
||||||
|
- title: "📖 Documentation"
|
||||||
|
regexp: "^docs"
|
||||||
|
|
|
||||||
|
|
@ -7,14 +7,6 @@ before:
|
||||||
- "go mod tidy"
|
- "go mod tidy"
|
||||||
- "go generate ./..."
|
- "go generate ./..."
|
||||||
|
|
||||||
# archives
|
|
||||||
archives:
|
|
||||||
- formats: ["tar.gz"]
|
|
||||||
name_template: "{{.ProjectName}}-v{{.Version}}-{{ .Os }}-{{ .Arch }}"
|
|
||||||
format_overrides:
|
|
||||||
- goos: "windows"
|
|
||||||
formats: ["zip"]
|
|
||||||
|
|
||||||
# build
|
# build
|
||||||
builds:
|
builds:
|
||||||
- id: "gogitlabber"
|
- id: "gogitlabber"
|
||||||
|
|
@ -34,18 +26,17 @@ builds:
|
||||||
changelog:
|
changelog:
|
||||||
use: "git"
|
use: "git"
|
||||||
sort: "desc"
|
sort: "desc"
|
||||||
filters:
|
|
||||||
exclude:
|
|
||||||
- "^chore"
|
|
||||||
- "^ci"
|
|
||||||
- "^docs"
|
|
||||||
groups:
|
groups:
|
||||||
- title: "🚀 Features"
|
- title: "🚀 Features"
|
||||||
regexp: "^feat"
|
regexp: "^feat"
|
||||||
- title: "🐛 Bug Fixes"
|
- title: "🐛 Bug Fixes"
|
||||||
regexp: "^fix"
|
regexp: "^fix"
|
||||||
- title: "🛠 Maintenance"
|
- title: "🛠️ Maintenance"
|
||||||
regexp: "^(chore|refactor)"
|
regexp: "^(chore|refactor)"
|
||||||
|
- title: "🦾 Automation"
|
||||||
|
regexp: "^ci"
|
||||||
|
- title: "📖 Documentation"
|
||||||
|
regexp: "^docs"
|
||||||
|
|
||||||
# gitlab
|
# gitlab
|
||||||
gitlab_urls:
|
gitlab_urls:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue