-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
63 lines (63 loc) · 1.74 KB
/
config.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"desiredLabels": [
{
"name": "type:bug",
"color": "ff0000",
"default": false,
"description": "Something is not working as intended/documented"
},
{
"name": "type:critical",
"color": "b60205",
"default": false,
"description": "Defect that causes us/our end-users to lose time, money or value - fix right away"
},
{
"name": "type:feature",
"color": "0e8a16",
"default": false,
"description": "New feature or request that provides value to the stakeholders/end-users"
},
{
"name": "type:improvement",
"color": "0e8a16",
"default": false,
"description": "Improves/enhances an existing feature"
},
{
"name": "type:chore",
"color": "fbca04",
"default": false,
"description": "Provides value to the (dev) team"
},
{
"name": "type:maintenance",
"color": "d93f0b",
"default": false,
"description": "Something that needs to be addressed to prevent a problem/bug in the future"
},
{
"name": "type:research",
"color": "dde24a",
"default": false,
"description": "Topic needs to be researched (usually timeboxed)"
}
],
"mappings": {
"type:feature": [
"enhancement"
],
"type:bug": [
"bug"
],
"type:chore": [
"chore"
],
"type:maintenance": [
"maintenance"
],
"type:research": [
"research"
]
}
}