forked from urbanyeti/stardew-better-friendship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.grenrc.js
21 lines (21 loc) · 769 Bytes
/
.grenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports = {
"dataSource": "milestones",
"prefix": "v",
"template": {
issue: "- [{{text}}]({{url}}) {{name}}",
release: function (placeholders) {
var parts = placeholders.date.split("/");
var dt = new Date(parseInt(parts[2], 10),
parseInt(parts[1], 10) - 1,
parseInt(parts[0], 10));
return '## ' + placeholders.release + ' (' + dt.toISOString().substring(0, 10).replace(/-/g,"/") +")\n" + placeholders.body;
}
},
"groupBy": {
"Enhancements:": ["enhancement", "internal"],
"Bug Fixes:": ["bug"]
},
"milestoneMatch": "Release {{tag_name}}",
"changelogFilename": "CHANGELOG.md",
"ignoreIssuesWith": ["duplicate", "help wanted", "invalid", "wontfix"]
}