2021-08-22 11:29:29 +00:00
|
|
|
module.exports = {
|
2021-08-23 20:13:16 +00:00
|
|
|
changelogFilename: "exampleSite/content/basics/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: [
|
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",
|
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",
|
2023-02-17 14:59:22 +00:00
|
|
|
"update",
|
2022-09-13 21:20:13 +00:00
|
|
|
"unresolved",
|
2021-08-22 11:29:29 +00:00
|
|
|
"wontfix",
|
|
|
|
],
|
|
|
|
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",
|
|
|
|
release: ({ body, date, release }) => `## ${release} (` + date.replace( /(\d+)\/(\d+)\/(\d+)/, '$3-$2-$1' ) + `)\n${body}`,
|
|
|
|
},
|
|
|
|
};
|