mirror of
https://github.com/go-shiori/shiori.git
synced 2024-11-10 09:23:35 +08:00
ci: improved autogenerated changelog on releases by categorizing the changes
This commit is contained in:
parent
82aa1e5080
commit
09bc9b4786
1 changed files with 26 additions and 3 deletions
|
@ -39,10 +39,33 @@ snapshot:
|
|||
name_template: "{{ incpatch .Version }}-next"
|
||||
changelog:
|
||||
sort: asc
|
||||
groups:
|
||||
- title: Features
|
||||
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
|
||||
order: 0
|
||||
- title: "Fixes"
|
||||
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
|
||||
order: 1
|
||||
- title: "Performance"
|
||||
regexp: '^.*?perf(\([[:word:]]+\))??!?:.+$'
|
||||
order: 2
|
||||
- title: API
|
||||
regexp: '^.*?api(\([[:word:]]+\))??!?:.+$'
|
||||
order: 3
|
||||
- title: Documentation
|
||||
regexp: '^.*?docs(\([[:word:]]+\))??!?:.+$'
|
||||
order: 4
|
||||
- title: "Tests"
|
||||
regexp: '^.*?test(\([[:word:]]+\))??!?:.+$'
|
||||
order: 5
|
||||
- title: CI and Delivery
|
||||
regexp: '^.*?ci(\([[:word:]]+\))??!?:.+$'
|
||||
order: 6
|
||||
- title: Others
|
||||
order: 999
|
||||
filters:
|
||||
exclude:
|
||||
- '^docs:'
|
||||
- '^test:'
|
||||
|
||||
- "^deps:"
|
||||
- "^chore\\(deps\\):"
|
||||
release:
|
||||
prerelease: auto
|
||||
|
|
Loading…
Reference in a new issue