forked from wix/react-native-notifications
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.grenrc.js
27 lines (27 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
22
23
24
25
26
27
module.exports = {
template: {
commit: ({message, url, author, name}) => `- [${message}](${url}) - ${author ? `@${author}` : name}`,
issue: "- {{name}} [{{text}}]({{url}}) by [{{user_login}}]({{user_url}})",
label: "[**{{label}}**]",
noLabel: "closed",
group: "\n#### {{heading}}\n",
changelogTitle: "# Changelog\n\n",
release: "## {{release}} ({{date}})\n{{body}}",
releaseSeparator: "\n---\n\n"
},
groupBy: {
"Enhancements:": ["type: accepted/enhancement", "Infrastructure"],
"Bug Fixes:": ["type: accepted/bug"]
},
ignoreIssuesWith: [
"skip-changelog"
],
ignoreTagsWith: [
"snapshot"
],
dataSource: "prs",
changelogFilename: "CHANGELOG.gren.md",
tags: "all",
override: true,
generate: true
}