Skip to content

Commit 34882aa

Browse files
author
Vic Shóstak
committed
Fix .goreleaser.yml
1 parent 20a1c7e commit 34882aa

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.goreleaser.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -141,19 +141,22 @@ checksum:
141141
changelog:
142142
sort: asc
143143
filters:
144-
exclude: [ "^*.md:", "^*.ya?ml:" ]
144+
exclude: [ "^*.md:", "^*.yml:" ]
145145
groups:
146146
- title: Features
147-
regexp: ^.*?feature(\([[:word:]]+\))??!?:.+$
147+
regexp: ^.*?feature.*?$/gmi
148148
order: 0
149149
- title: Bug fixes
150-
regexp: ^.*?bug(\([[:word:]]+\))??!?:.+$
150+
regexp: ^.*?(bug)|(fix).*?$/gmi
151151
order: 1
152-
- title: Updates
153-
regexp: ^.*?update(\([[:word:]]+\))??!?:.+$
152+
- title: Improvements
153+
regexp: ^.*?improve.*?$/gmi
154154
order: 2
155-
- title: Security issues
156-
regexp: ^.*?security(\([[:word:]]+\))??!?:.+$
155+
- title: Updates
156+
regexp: ^.*?update.*?$/gmi
157157
order: 3
158+
- title: Security issues
159+
regexp: ^.*?security.*?$/gmi
160+
order: 4
158161
- title: Others
159162
order: 999

0 commit comments

Comments
 (0)