forked from mistakia/nano-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default-labels.js
193 lines (193 loc) · 4.39 KB
/
default-labels.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
module.exports = [
{
name: 'priority/critical',
color: 'b60205',
description: 'Critical: Tackled by core team ASAP'
},
{
name: 'priority/high',
color: 'd93f0b',
description: 'High: Likely tackled by core team if no one steps up'
},
{
name: 'priority/medium',
color: 'e99695',
description: 'Medium: Good to have, but can wait until someone steps up'
},
{
name: 'priority/low',
color: 'f9d0c4',
description: 'Low: Not priority right now'
},
{
name: 'kind/architecture',
color: 'c7def8',
description: 'Core architecture of project'
},
{
name: 'kind/bug',
color: 'fc2929',
description: 'A bug in existing code (including security flaws)'
},
{
name: 'kind/discussion',
color: 'c7def8',
description: 'Topical discussion; usually not changes to codebase'
},
{
name: 'kind/enhancement',
color: 'c7def8',
description: 'A net-new feature or improvement to an existing feature'
},
{
name: 'kind/maintenance',
color: 'c7def8',
description:
"Work required to avoid breaking changes or harm to project's status quo"
},
{
name: 'kind/support',
color: 'c7def8',
description: 'A question or request for support'
},
{
name: 'kind/test',
color: 'c7def8',
description: 'Testing work'
},
{
name: 'need/analysis',
color: 'ededed',
description: 'Needs further analysis before proceeding'
},
{
name: 'need/author-input',
color: 'ededed',
description: 'Needs input from the original autho'
},
{
name: 'need/community-input',
color: 'ededed',
description: 'Needs input from the wider community'
},
{
name: 'need/maintainer-input',
color: 'ededed',
description: 'Needs input from the current maintainer(s)'
},
{
name: 'need/triage',
color: 'ededed',
description: 'Needs initial labeling and prioritization'
},
{
name: 'bounty',
color: '1cfc60',
description: 'Has Bounty'
},
{
name: 'good first issue',
color: '7057ff',
description: 'Good issue for new contributors'
},
{
name: 'help wanted',
color: '0e8a16',
description: 'Seeking public contribution on this issue'
},
{
name: 'dif/trivial',
color: 'bfe5bf',
description: 'Can be confidently tackled by newcomers'
},
{
name: 'dif/easy',
color: 'bfe5bf',
description: 'Someone with a little familiarity can pick up'
},
{
name: 'dif/medium',
color: 'bfe5bf',
description: 'Prior experience is likely helpful'
},
{
name: 'dif/hard',
color: 'bfe5bf',
description: 'Having worked on the specific codebase is important'
},
{
name: 'dif/expert',
color: 'bfe5bf',
description: 'Extensive knowledge (implications, ramifications) required'
},
{
name: 'effort/hours',
color: 'fef2c0',
description: 'Estimated to take one or several hours'
},
{
name: 'effort/days',
color: 'fef2c0',
description: 'Estimated to take multiple days, but less than a week'
},
{
name: 'effort/weeks',
color: 'fef2c0',
description: 'Estimated to take multiple weeks'
},
{
name: 'status/blocked',
color: 'b52ed1',
description: 'Unable to be worked further until needs are met'
},
{
name: 'status/deferred',
color: 'dcc8e0',
description: 'Conscious decision to pause or backlog'
},
{
name: 'status/inactive',
color: 'dcc8e0',
description: 'No significant work in the previous month'
},
{
name: 'status/in-progress',
color: 'dcc8e0',
description: 'In progress'
},
{
name: 'status/ready',
color: 'dcc8e0',
description: 'Ready to be worked'
},
{
name: 'status/duplicate',
color: 'e9dfeb',
description: 'This issue or pull request already exists'
},
{
name: 'topic/design-content',
color: '3f4b56',
description: 'Content design, writing, information architecture'
},
{
name: 'topic/design-front-end',
color: '3f4b56',
description: 'Front-end implementation of UX/UI work'
},
{
name: 'topic/design-ux',
color: '3f4b56',
description: 'UX strategy, research, not solely visual design'
},
{
name: 'topic/design-video',
color: '3f4b56',
description: 'Video and/or motion design'
},
{
name: 'topic/design-visual',
color: '3f4b56',
description: 'Visual design ONLY, not part of a larger UX effort'
}
]