-
Notifications
You must be signed in to change notification settings - Fork 27
/
labels.json
99 lines (99 loc) · 2.02 KB
/
labels.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
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
[
{
"name": "Priority: Critical",
"color": "8c001a",
"description": "우선순위 긴급"
},
{
"name": "Priority: High",
"color": "FF0000",
"description": "우선순위 상"
},
{
"name": "Priority: Low",
"color": "F9966b",
"description": "우선순위 하"
},
{
"name": "Priority: Medium",
"color": "E77471",
"description": "우선순위 중"
},
{
"name": "Status: Done",
"color": "a0ffb8",
"description": "리뷰까지 완료 된 이슈"
},
{
"name": "Status: Duplicated",
"color": "cfd3d7",
"description": "이미 보고 된 이슈",
"aliases": [
"duplicate"
]
},
{
"name": "Status: In Progress",
"color": "539606",
"description": "현재 처리 중인 이슈"
},
{
"name": "Status: Pending",
"color": "66e26c",
"description": "보류 중인 이슈",
"aliases": [
"wontfix"
]
},
{
"name": "Status: Reviewing",
"color": "2db78b",
"description": "처리하고 리뷰 중인 이슈"
},
{
"name": "Status: To Do",
"color": "757c06",
"description": "처리해야 되는 이슈"
},
{
"name": "Type: Bugfix/Function",
"color": "d73a4a",
"description": "정상 동작하지 않는 기능",
"aliases": [
"bug"
]
},
{
"name": "Type: Bugfix/UI",
"color": "b60205",
"description": "정상 표시되지 않는 UI"
},
{
"name": "Type: Feature/Document",
"color": "0075ca",
"description": "문서 추가 및 보완 작업"
},
{
"name": "Type: Feature/Function",
"color": "a2eeef",
"description": "새로운 기능 및 개선 사항",
"aliases": [
"enhancement"
]
},
{
"name": "Type: Feature/UI",
"color": "7057ff",
"description": "UI 수정 및 개선 사항"
},
{
"name": "Type: Hotfix",
"color": "de8ae2",
"description": "급하게 수정해야 되는 사항"
},
{
"name": "Type: Release",
"color": "c2e0c6",
"description": "배포 관련 이슈"
}
]