-
Notifications
You must be signed in to change notification settings - Fork 0
/
labels.yaml
77 lines (77 loc) · 2.22 KB
/
labels.yaml
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
labels: {
"where": {
"system": {
'color': 'green',
'labels': [
],
},
"features": {
'color': 'green',
'labels': [
],
},
"other": {
'color': 'teal',
'labels': [
{'name': "tests"},
{'name': "perfs"},
{'name': "examples"},
{'name': "docs"},
],
},
},
"what": {
"kind": {
'color': 'purple-bright',
'labels': [
### Redder is higher priority
{'name': "meta", 'color': 'purple-dark'},
{'name': "improvement", 'color-step': 2},
{'name': "refactor", 'color-step': 6},
{'name': "problem", 'color-step': 10},
],
},
"priority": {
'color': 'red',
'labels': [
{'name': "critical", 'color-step': -1},
{'name': "low", 'color-step': 0},
],
},
},
"who": {
"dev": {
'color': 'white-tint',
'labels': [
### A 4x4 matrix of responsibilities
# Public/Open
{'name': "anyone", 'color-tint': "blue"},
# Public/Specifics
{'name': "intro", 'color-tint': "green"},
# Contrib/Open
{'name': "everyone", 'color-tint': "yellow"},
# Contrib/Specifics
{'name': "core", 'color-tint': "red"},
],
},
},
"why": {
"closed": {
'color': 'black-tint',
'labels': [
{'name': "replaced", 'color-tint': "green"},
{'name': "duplicate", 'color-tint': "yellow"},
{'name': "wontfix", 'color-tint': "orange"},
{'name': "invalid", 'color-tint': "red"},
],
},
"stalled": {
'color': 'grey-tint',
'labels': [
{'name': "design", 'color-tint': "blue"},
{'name': "dependencies", 'color-tint': "yellow"},
{'name': "external", 'color-tint': "red"},
],
},
},
}