Skip to content

Commit

Permalink
Automated release notes (#1661)
Browse files Browse the repository at this point in the history
* chore: Update grenrc

* chore: Delete old grenrc file

* feat(gh-ci): Write github release notes

Co-authored-by: Ivan Subotic <400790+subotic@users.noreply.github.com>
  • Loading branch information
kilchenmann and subotic committed Jun 24, 2020
1 parent fdc5140 commit 24db3bf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -297,3 +297,7 @@ jobs:
run: |
df -h
docker system df
- name: Generate Github release notes
uses: lakto/gren-action@v1.1.0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
18 changes: 10 additions & 8 deletions .grenrc.js → .grenrc
@@ -1,6 +1,8 @@
module.exports = {
"dataSource": "milestones",
{
"dataSource": "prs",
"prefix": "",
"onlyMilestones": false,
"changelogFilename": "CHANGELOG.md",
"ignoreIssuesWith": [
"duplicate",
"wontfix",
Expand All @@ -10,14 +12,14 @@ module.exports = {
"testing",
"test"
],
"template": {
"issue": "- [{{text}}]({{url}}) {{name}}"
},
"groupBy": {
"Breaking Changes": ["breaking/data", "breaking/api"],
"Breaking changes:": ["breaking/api", "breaking/data", "breaking"],
"Enhancements:": ["enhancement"],
"Bug Fixes:": ["bug"],
"Documentation:": ["documentation"],
"Other": ["chore", "refactor"]
},
"template": {
"issue": "- [{{text}}]({{url}}) {{name}}"
"Other:": ["chore", "refactor"]
}
};
}

0 comments on commit 24db3bf

Please sign in to comment.