mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-27 01:15:49 +00:00
create config file for changelog generator action
This commit is contained in:
parent
5a4e7403ff
commit
9c063890c0
1 changed files with 26 additions and 0 deletions
26
.github/workflows/changelog-ci-config.json
vendored
Normal file
26
.github/workflows/changelog-ci-config.json
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"changelog_type": "commit_message",
|
||||||
|
"header_prefix": "Version:",
|
||||||
|
"commit_changelog": true,
|
||||||
|
"comment_changelog": true,
|
||||||
|
"pull_request_title_regex": "^Release",
|
||||||
|
"version_regex": "v?([0-9]{1,2})+[.]+([0-9]{1,2})+[.]+([0-9]{1,2})\\s\\(\\d{1,2}-\\d{1,2}-\\d{4}\\)",
|
||||||
|
"group_config": [
|
||||||
|
{
|
||||||
|
"title": "Bug Fixes",
|
||||||
|
"labels": ["bug", "bugfix"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Code Improvements",
|
||||||
|
"labels": ["improvements", "enhancement"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "New Features",
|
||||||
|
"labels": ["feature"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Documentation Updates",
|
||||||
|
"labels": ["docs", "documentation", "doc"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue