From 66897a065e1a241cd86f64e4ae3c91b2c3769a3a Mon Sep 17 00:00:00 2001 From: Jahvon Dockery Date: Sun, 8 Sep 2024 14:40:10 -0400 Subject: [PATCH] ci: update changelog groups --- .goreleaser.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 12941e3..da19a1d 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -90,17 +90,13 @@ changelog: sort: asc groups: - title: "New features" - regexp: '^(feat|\(feat.*\)):' + regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$' order: 0 - title: "Bug fixes" - regexp: '^(fix|\(fix.*\)):' + regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$' order: 1 - title: "Documentation updates" - regexp: '^(docs|\(docs.*\)):' + regexp: '^.*?docs(\([[:word:]]+\))??!?:.+$' order: 2 - - title: Others + - title: "Miscellaneous" order: 999 - filters: - exclude: - - "^(chore|\\(chore\\))" - - "^(test|\\(test\\))"