-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.grenrc.js
31 lines (31 loc) · 971 Bytes
/
.grenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module.exports = {
"dataSource": "issues",
"prefix": "",
"onlyMilestones": false,
"ignoreIssuesWith": [
"question",
"wontfix",
"invalid",
"on hold",
"help wanted",
"good first issue"
],
"groupBy": {
"Enhancements": ["enhancement"],
"Bugs Fixed:": ["bug"],
"Build/Test/Deploy Improvements:": ["build"],
"Documentation Improvements:": ["documentation"],
"Duplicate Issues:": ["duplicate"],
},
"changelogFilename": "CHANGELOG.md",
"template": {
commit: ({ message, url, author, name }) => `- [${message}](${url}) - ${author ? `@${author}` : name}`,
issue: "- [{{text}}]({{url}}) {{name}}",
label: "[**{{label}}**]",
noLabel: "closed",
group: "\n#### {{heading}}\n",
changelogTitle: "# Changelog\n\n",
release: "## {{release}} ({{date}})\n{{body}}",
releaseSeparator: "\n---\n\n"
}
}