-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlabels.json
More file actions
212 lines (207 loc) · 4.66 KB
/
Copy pathlabels.json
File metadata and controls
212 lines (207 loc) · 4.66 KB
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
[
{
"name": "type: bug",
"color": "d73a4a",
"description": "Something isn’t working as expected."
},
{
"name": "type: feature",
"color": "0e8a16",
"description": "New feature or capability."
},
{
"name": "type: enhancement",
"color": "84b6eb",
"description": "Improvement to an existing feature."
},
{
"name": "type: documentation",
"color": "6f42c1",
"description": "Changes or additions to documentation."
},
{
"name": "type: performance",
"color": "fbca04",
"description": "Performance or optimization related."
},
{
"name": "type: dependencies",
"color": "0366d6",
"description": "Dependency updates or issues."
},
{
"name": "type: test",
"color": "1d76db",
"description": "Adds or modifies automated tests."
},
{
"name": "status: todo",
"color": "d4c5f9",
"description": "Planned but not yet started."
},
{
"name": "status: in progress",
"color": "fbca04",
"description": "Currently being worked on."
},
{
"name": "status: needs review",
"color": "0e8a16",
"description": "Ready for code review."
},
{
"name": "status: under review",
"color": "f9d0c4",
"description": "Review in progress."
},
{
"name": "status: ready to merge",
"color": "0052cc",
"description": "Approved and ready to merge."
},
{
"name": "status: blocked",
"color": "b60205",
"description": "Blocked by another issue or dependency."
},
{
"name": "status: wontfix",
"color": "666666",
"description": "Decided not to address this issue."
},
{
"name": "status: duplicate",
"color": "cfd3d7",
"description": "This issue already exists."
},
{
"name": "status: invalid",
"color": "000000",
"description": "Not a valid issue (out of scope or incorrect)."
},
{
"name": "platform: android",
"color": "3ddc84",
"description": "Android-specific issue or change."
},
{
"name": "platform: ios",
"color": "007aff",
"description": "iOS-specific issue or change."
},
{
"name": "platform: web",
"color": "0366d6",
"description": "Web-specific behavior or support."
},
{
"name": "platform: expo",
"color": "8a63d2",
"description": "Related to Expo environment."
},
{
"name": "platform: cli",
"color": "6a737d",
"description": "CLI, tooling, or build process."
},
{
"name": "platform: typescript",
"color": "2b7489",
"description": "TypeScript types or definitions."
},
{
"name": "priority: high",
"color": "b60205",
"description": "Requires immediate attention."
},
{
"name": "priority: medium",
"color": "fbca04",
"description": "Should be addressed soon."
},
{
"name": "priority: low",
"color": "0e8a16",
"description": "Nice to have, not urgent."
},
{
"name": "severity: critical",
"color": "86181d",
"description": "Breaks core functionality."
},
{
"name": "severity: minor",
"color": "bfdadc",
"description": "Low impact, cosmetic or minor."
},
{
"name": "good first issue",
"color": "7057ff",
"description": "Great entry point for first-time contributors."
},
{
"name": "help wanted",
"color": "008672",
"description": "Contributions are welcome."
},
{
"name": "discussion",
"color": "d4c5f9",
"description": "Open discussion or idea."
},
{
"name": "question",
"color": "84b6eb",
"description": "General question or clarification."
},
{
"name": "needs reproduction",
"color": "e4e669",
"description": "Needs a reproducible example or steps."
},
{
"name": "area: core",
"color": "1d76db",
"description": "Core logic or architecture."
},
{
"name": "area: hooks",
"color": "bfdadc",
"description": "React hooks implementation."
},
{
"name": "area: ui",
"color": "0e8a16",
"description": "UI components or styling."
},
{
"name": "area: native",
"color": "6f42c1",
"description": "Native module or bridge layer."
},
{
"name": "area: docs",
"color": "6a737d",
"description": "Documentation site or content."
},
{
"name": "area: example",
"color": "8a63d2",
"description": "Example app or demo project."
},
{
"name": "docs: typo",
"color": "c5def5",
"description": "Fixing typos or grammar in documentation."
},
{
"name": "docs: improvement",
"color": "bfe5bf",
"description": "Improving clarity, structure, or examples in documentation."
},
{
"name": "docs: missing",
"color": "e99695",
"description": "Missing documentation that needs to be added."
}
]