From 6341dcce94e0ecd0f0ba8071255c6bf647d17f3e Mon Sep 17 00:00:00 2001 From: Kalila L Date: Tue, 25 May 2021 18:46:53 -0400 Subject: [PATCH] Create .grenrc.js --- .grenrc.js | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .grenrc.js diff --git a/.grenrc.js b/.grenrc.js new file mode 100644 index 0000000000..2fdbca7769 --- /dev/null +++ b/.grenrc.js @@ -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" +} \ No newline at end of file