forked from corona-warn-app/cwa-quick-test-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.grenrc.js
40 lines (40 loc) · 862 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
32
33
34
35
36
37
38
39
40
module.exports = {
"dataSource": "prs",
"prefix": "",
"onlyMilestones": false,
"groupBy": {
"Enhancements": [
"enhancement",
"internal",
"feat",
"feature",
"code improvement"
],
"Bug Fixes": [
"fix",
"bug"
],
"Documentation": [
"doc",
"documentation"
],
"Others": [
"other"
]
},
"ignoreIssuesWith": [
"wontfix",
"duplicate",
"chore"
],
"changelogFilename": "CHANGELOG.md",
"template": {
commit: ({ message, url, author, name }) => `- [${message}](${url}) - ${author ? `@${author}` : name}`,
issue: "- {{name}} [{{text}}]({{url}})",
noLabel: "other",
group: "\n#### {{heading}}\n",
changelogTitle: "# Changelog\n\n",
release: "## {{release}} ({{date}})\n{{body}}",
releaseSeparator: "\n---\n\n"
}
}