github.com/choria-io/go-choria@v0.28.1-0.20240416190746-b3bf9c7d5a45/docs/themes/hugo-theme-relearn/.grenrc.js (about) 1 module.exports = { 2 changelogFilename: "exampleSite/content/basics/CHANGELOG.md", 3 dataSource: "milestones", 4 groupBy: { 5 "Enhancements": [ 6 "feature", 7 ], 8 "Fixes": [ 9 "bug" 10 ], 11 "Maintenance": [ 12 "task", 13 ], 14 "Uncategorised": [ 15 "closed", 16 ], 17 }, 18 ignoreLabels: [ 19 "blocked", 20 "browser", 21 "device", 22 "helpwanted", 23 "hugo", 24 "mermaid", 25 "needsfeedback", 26 "undecided", 27 ], 28 ignoreIssuesWith: [ 29 "discussion", 30 "documentation", 31 "duplicate", 32 "invalid", 33 "support", 34 "update", 35 "unresolved", 36 "wontfix", 37 ], 38 ignoreTagsWith: [ 39 "Relearn", 40 "x", 41 ], 42 milestoneMatch: "{{tag_name}}", 43 onlyMilestones: true, 44 template: { 45 group: "\n### {{heading}}\n", 46 release: ({ body, date, release }) => `## ${release} (` + date.replace( /(\d+)\/(\d+)\/(\d+)/, '$3-$2-$1' ) + `)\n${body}`, 47 }, 48 };