diff options
author | Ryan <me@hackerc.at> | 2022-01-01 18:04:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-01 18:04:37 +0100 |
commit | 4e6cddf80a712469695640058bcfceee7adaeda6 (patch) | |
tree | 67d5b039819a7e6bb97601ca75b708c9c091f236 /.goreleaser.yml | |
parent | fix: update install.sh (#937) (diff) | |
download | forgejo-act-4e6cddf80a712469695640058bcfceee7adaeda6.tar.xz forgejo-act-4e6cddf80a712469695640058bcfceee7adaeda6.zip |
feat(goreleaser): format changelog, add prereleases (#942)
Diffstat (limited to '.goreleaser.yml')
-rw-r--r-- | .goreleaser.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.goreleaser.yml b/.goreleaser.yml index 4a819cd..96ec05c 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -32,3 +32,18 @@ archives: format_overrides: - goos: windows format: zip +changelog: + groups: + - title: 'New Features' + regexp: "^.*feat[(\\w)]*:+.*$" + order: 0 + - title: 'Bug fixes' + regexp: "^.*fix[(\\w)]*:+.*$" + order: 1 + - title: 'Documentation updates' + regexp: "^.*docs[(\\w)]*:+.*$" + order: 2 + - title: 'Other' + order: 999 +release: + prerelease: auto |