ci(chglog): Update chglog and clean up config (#3227)

This commit is contained in:
Thomas O'Donnell 2021-11-14 23:56:48 +01:00 committed by GitHub
parent 0f47dd3751
commit 9d443dff9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 16 deletions

View File

@ -1,17 +1,25 @@
---
style: github style: github
template: CHANGELOG.tpl.md template: CHANGELOG.tpl.md
info: info:
title: CHANGELOG title: CHANGELOG
repository_url: https://github.com/starship/starship repository_url: https://github.com/starship/starship
options: options:
commits: commits: {}
# filters:
# Type:
# - feat
# - fix
# - perf
# - refactor
commit_groups: commit_groups:
sort_by: Custom
title_order:
- feat
- fix
- docs
- style
- refactor
- perf
- test
- build
- ci
- chore
- revert
title_maps: title_maps:
feat: Features feat: Features
fix: Bug Fixes fix: Bug Fixes

View File

@ -1,15 +1,10 @@
---
style: github style: github
template: RELEASE.tpl.md template: RELEASE.tpl.md
info: info:
repository_url: https://github.com/starship/starship repository_url: https://github.com/starship/starship
options: options:
commits: commits: {}
# filters:
# Type:
# - feat
# - fix
# - perf
# - refactor
commit_groups: commit_groups:
sort_by: Custom sort_by: Custom
title_order: title_order:

View File

@ -126,7 +126,7 @@ jobs:
- name: Setup | Go - name: Setup | Go
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: "^1.15.7" go-version: "1.16"
- name: Setup | Artifacts - name: Setup | Artifacts
uses: actions/download-artifact@v2 uses: actions/download-artifact@v2
@ -136,7 +136,7 @@ jobs:
- name: Setup | Release notes - name: Setup | Release notes
run: | run: |
GO111MODULE=on go get github.com/git-chglog/git-chglog/cmd/git-chglog@0.9.1 go install github.com/git-chglog/git-chglog/cmd/git-chglog@v0.15.0
git-chglog -c .github/chglog/release.yml $(git describe --tags) > RELEASE.md git-chglog -c .github/chglog/release.yml $(git describe --tags) > RELEASE.md
- name: Build | Publish - name: Build | Publish