This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #283 from luxas/relnotes
Automatically generate the release notes
- Loading branch information
Showing
7 changed files
with
395 additions
and
241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module.exports = { | ||
"dataSource": "prs", | ||
"prefix": "", | ||
"onlyMilestones": false, | ||
"username": "weaveworks", | ||
"repo": "ignite", | ||
"groupBy": { | ||
"New Features": ["kind/feature"], | ||
"API Changes": ["kind/api-change"], | ||
"Enhancements": ["kind/enhancement"], | ||
"Bug Fixes": ["kind/bug"], | ||
"Documentation": ["kind/documentation"], | ||
"No category": ["closed"] | ||
}, | ||
"changelogFilename": "docs/releases/next.md", | ||
"ignore-labels": ["kind/cleanup"], | ||
"template": { | ||
commit: ({ message, url, author, name }) => `- [${message}](${url}) - ${author ? `@${author}` : name}`, | ||
issue: "- {{labels}} {{name}} ([{{text}}]({{url}}), [@{{user_login}}]({{user_url}}))", | ||
label: "", | ||
noLabel: "closed", | ||
group: "\n### {{heading}}\n", | ||
changelogTitle: "", | ||
release: "## {{release}}, {{date}}\n\n{{body}}", | ||
releaseSeparator: "\n\n---\n\n" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM node | ||
|
||
RUN apt-get update && apt-get install -y git | ||
|
||
RUN npm install gulp -g | ||
RUN git clone https://github.com/github-tools/github-release-notes | ||
WORKDIR /github-release-notes | ||
RUN npm install | ||
RUN gulp build && ln -s /github-release-notes/bin/gren.js /usr/local/bin/gren |