Skip to content

Commit

Permalink
Merge pull request #1226 from vircadia/feature/gren-changelog-gen
Browse files Browse the repository at this point in the history
Add "gren" configuration for easy changelog generation
  • Loading branch information
digisomni authored May 27, 2021
2 parents b020558 + 6341dcc commit 9640a13
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .grenrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
//
// .grenrc.js
//
// Created by Kalila L. on May 25, 2021
// Copyright 2021 Vircadia contributors.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
// This configuration is for generating a changelog with gren for a GitHub repository.
//
// gren changelog -G
//

module.exports = {
"dataSource": "prs",
"prefix": "",
"ignoreLabels": [
"enhancement",
"bugfix",
"CR Approved",
"QA Approved",
"allow-build-upload",
"bug",
"confirmed",
"do not merge",
"duplicate",
"good first issue",
"help wanted",
"hifi migration",
"high risk",
"rebuild",
"merge right before snip"
],
"onlyMilestones": true,
"groupBy": {
"Enhancements": ["enhancement"],
"Bug Fixes": ["bugfix"],
"Docs": ["docs"]
},
"changelogFilename": "CHANGELOG.md"
}

0 comments on commit 9640a13

Please sign in to comment.