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

Commit

Permalink
feat: github release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheibal committed Jul 15, 2020
1 parent 8076c87 commit a9a8794
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .grenrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
module.exports = {
"dataSource": "prs",
"prefix": "",
"onlyMilestones": false,
"groupBy": {
"Enhancements": [
"enhancement",
"internal",
"feat",
"feature",
"code improvement"
],
"Bug Fixes": [
"fix",
"bug"
],
"Documentation": [
"doc",
"documentation"
],
"Others": [
"other"
]
},
"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 a9a8794

Please sign in to comment.