forked from weaveworks/ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.grenrc.js
29 lines (29 loc) · 1.02 KB
/
.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
module.exports = {
"dataSource": "prs",
"prefix": "",
"onlyMilestones": false,
"username": "weaveworks",
"repo": "ignite",
"groupBy": {
"New Features": ["kind/feature"],
"API Changes": ["kind/api-change"],
"Enhancements": ["kind/enhancement", "area/ux"],
"Bug Fixes": ["kind/bug"],
"Documentation": ["kind/documentation"],
"Testing": ["area/testing"],
"Releasing": ["area/releasing"],
"No category": ["closed"]
},
"changelogFilename": "docs/releases/next.md",
"ignore-labels": ["kind/cleanup"],
"template": {
commit: ({ message, url, author, name }) => `- [${message}](${url}) - ${author ? `@${author}` : name}`,
issue: "- {{name}} ([{{text}}]({{url}}), [@{{user_login}}]({{user_url}}))",
label: "",
noLabel: "closed",
group: "\n### {{heading}}\n",
changelogTitle: "",
release: "## {{release}}\n\n**Released:** {{date}}\n\n{{body}}",
releaseSeparator: "\n\n---\n\n"
}
}