2021-08-22 11:29:29 +00:00
module . exports = {
2024-04-19 15:58:38 +00:00
changelogFilename : "CHANGELOG.md" ,
2021-08-22 11:29:29 +00:00
dataSource : "milestones" ,
groupBy : {
"Enhancements" : [
"feature" ,
] ,
2021-09-13 19:20:06 +00:00
"Fixes" : [
2021-08-22 11:29:29 +00:00
"bug"
] ,
"Maintenance" : [
"task" ,
] ,
"Uncategorised" : [
"closed" ,
] ,
} ,
ignoreLabels : [
2024-04-27 14:26:58 +00:00
"asciidoc" ,
2022-09-13 21:20:13 +00:00
"blocked" ,
"browser" ,
2023-02-21 18:52:22 +00:00
"device" ,
2022-09-13 21:20:13 +00:00
"helpwanted" ,
2021-11-17 15:51:15 +00:00
"hugo" ,
2024-04-27 14:26:58 +00:00
"idea" ,
2022-09-13 21:20:13 +00:00
"mermaid" ,
"needsfeedback" ,
"undecided" ,
2021-11-17 15:51:15 +00:00
] ,
ignoreIssuesWith : [
2021-08-22 11:29:29 +00:00
"discussion" ,
"documentation" ,
"duplicate" ,
"invalid" ,
2023-11-12 12:44:18 +00:00
"support" ,
2022-09-13 21:20:13 +00:00
"unresolved" ,
2024-04-27 14:26:58 +00:00
"update" ,
"wontchange" ,
2021-08-22 11:29:29 +00:00
] ,
ignoreTagsWith : [
"Relearn" ,
2023-02-05 12:26:29 +00:00
"x" ,
2021-08-22 11:29:29 +00:00
] ,
milestoneMatch : "{{tag_name}}" ,
onlyMilestones : true ,
template : {
group : "\n### {{heading}}\n" ,
2024-09-12 13:42:12 +00:00
release : ( { body , date , release } ) => ` ## ${ release } ( ` + date . replace ( /(\d+)\/(\d+)\/(\d+)/ , '$3-$2-$1' ) + ` ) \n \n [What's new in this release](https://mcshelby.github.io/hugo-theme-relearn/basics/migration/# ` + release . replace ( /(\d+)\.(\d+)\.(\d+)/ , '$1$2' ) + ` 0) \n ${ body } ` ,
2021-08-22 11:29:29 +00:00
} ,
} ;