-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlabels.js
109 lines (108 loc) · 3.08 KB
/
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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for th
// specific language governing permissions and limitations
// under the License.
module.exports = [
{
name: "bug",
color: "d73a4a",
description: "Something isn't working"
},
{
name: "dependencies",
color: "0366d6",
description: "Pull requests that update a dependency file"
},
{
name: "java",
color: "ffa221",
description: "Pull requests that update Java code"
},
{
name: "documentation",
color: "0075ca",
description: "Improvements or additions to documentation"
},
{
name: "duplicate",
color: "cfd3d7",
description: "This issue or pull request already exists"
},
{
name: "enhancement",
color: "a2eeef",
description: "New feature or request"
},
{
name: "good first issue",
color: "7057ff",
description: "Good for newcomers"
},
{
name: "help wanted",
color: "008672",
description: "Extra attention is needed"
},
{
name: "invalid",
color: "e4e669",
description: "This doesn't seem right"
},
{
name: "maintenance",
color: "912E29",
description: ""
},
{
name: "skip-changelog",
color: "e4e669",
description: "Skip this PR from automatically changelog generation"
},
{
name: "priority:blocker",
color: "cc0000",
description: "Blocks development and/or testing work, production could not run"
},
{
name: "priority:critical",
color: "ff0000",
description: "Crashes, loss of data, severe memory leak"
},
{
name: "priority:major",
color: "009900",
description: "Major loss of function"
},
{
name: "priority:minor",
color: "006600",
description: "Minor loss of function, or other problem where easy workaround is present"
},
{
name: "priority:trivial",
color: "003300",
description: "Cosmetic problem like misspelled words or misaligned text"
},
{
name: "waiting-for-feedback",
color: "ffffff",
description: "Waiting for 90 days until issues or pull request will be closed"
},
{
name: "wontfix",
color: "ffffff",
description: "This will not be worked on"
}
]