chore: refine Changelog Generation Process
- Change the changelog generation from using git to using GitHub - Add custom changelog sections for build process and documentation updates with specific regex patterns and order Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
046c21368d
commit
5401378058
|
@ -99,7 +99,7 @@ release:
|
||||||
- glob: ./**.xz
|
- glob: ./**.xz
|
||||||
|
|
||||||
changelog:
|
changelog:
|
||||||
use: git
|
use: github
|
||||||
groups:
|
groups:
|
||||||
- title: Features
|
- title: Features
|
||||||
regexp: "^.*feat[(\\w)]*:+.*$"
|
regexp: "^.*feat[(\\w)]*:+.*$"
|
||||||
|
@ -113,5 +113,11 @@ changelog:
|
||||||
- title: "Refactor"
|
- title: "Refactor"
|
||||||
regexp: "^.*refactor[(\\w)]*:+.*$"
|
regexp: "^.*refactor[(\\w)]*:+.*$"
|
||||||
order: 3
|
order: 3
|
||||||
|
- title: "Build process updates"
|
||||||
|
regexp: ^.*?(build|ci)(\(.+\))??!?:.+$
|
||||||
|
order: 4
|
||||||
|
- title: "Documentation updates"
|
||||||
|
regexp: ^.*?docs?(\(.+\))??!?:.+$
|
||||||
|
order: 4
|
||||||
- title: Others
|
- title: Others
|
||||||
order: 999
|
order: 999
|
||||||
|
|
Loading…
Reference in New Issue