-
Notifications
You must be signed in to change notification settings - Fork 20
/
config.js
41 lines (35 loc) · 1.33 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*!
* Matomo - free/libre analytics platform
*
* @link http://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
var config = {};
/**
* GitHub Repository to fetch issues from. Multiple repositories can be specified comma separated.
* @type {string}
*/
config.repository = 'matomo-org/matomo';
/**
* See https://developer.github.com/v3/oauth_authorizations/#create-a-new-authorization
* @type {string}
*/
config.oauthToken = '';
/**
* Ignore issues having at least one of those labels.
* @type {Array}
*/
config.labelsToIgnore = ['invalid', 'wontfix', 'duplicate', 'worksforme', 'answered', 'not-in-changelog'];
/**
* Ignore issues that are assigned to one milestone containing this string. Supports regex. eg. ^3.* will exclude issues with milestones starting with 3.
* @type {Array}
*/
config.milestonesToIgnore = ['^3.*'];
/**
* Issues will be sorted by those labels. An issue having the label 'Major' will be listed first while an issue having
* the label 'Bug' will be listed last. An issue that has the label 'Major' and 'Bug' will be listed before a label having
* only 'Major'. The higher the index of the array item, the more important is the label.
*
* @type {Array}
*/
config.sortByLabels = ['Bug', 'Task', 'Enhancement', 'c: Performance', 'c: Security', 'c: New Plugin', 'Major', 'Critical']