Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
doc: grenrc for github release notes (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheibal authored Sep 10, 2020
1 parent e82d3a4 commit 81a1df2
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .grenrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
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"
}
}

0 comments on commit 81a1df2

Please sign in to comment.