-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlabels.yml
More file actions
427 lines (338 loc) · 10.3 KB
/
Copy pathlabels.yml
File metadata and controls
427 lines (338 loc) · 10.3 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
# ──────────────────────────────────────────────────────────────────────────────
# ThemisDB — Canonical Label Definitions
# Source of truth for all repository labels.
# Managed by: .github/workflows/maintenance-labels.yml (schedule + workflow_dispatch)
#
# type: blocker — blocks merge / requires immediate action
# type: warning — attention needed, not a hard merge blocker
# type: info — informational, no action required
# ──────────────────────────────────────────────────────────────────────────────
# ── ci/ — CI pipeline status (set/cleared by build-mainline.yml and maintenance workflows) ──
- name: "ci/build-failed"
color: "B60205"
description: "Build after merge failed; blocks next merge until resolved"
type: blocker
- name: "ci/build-ok"
color: "0E8A16"
description: "Build after merge succeeded (replaces ci/build-failed)"
type: info
- name: "ci/test-failed"
color: "B60205"
description: "Tests after merge build failed; blocks next merge"
type: blocker
- name: "ci/test-ok"
color: "0E8A16"
description: "Tests green after merge (replaces ci/test-failed)"
type: info
- name: "ci/failure"
color: "D93F0B"
description: "CI execution failures requiring action"
type: blocker
- name: "ci/chronic-failure"
color: "B60205"
description: "Chronic CI failures (>30% rate) requiring remediation"
type: blocker
- name: "ci/build-error"
color: "B60205"
description: "Build infrastructure error requiring action"
type: blocker
- name: "ci/dependency-stale"
color: "E4E669"
description: "Stale or outdated dependencies detected"
type: warning
# ── status/ — Process status (set by workflows and maintainers) ──
- name: "status/needs-approval"
color: "FBCA04"
description: "Requires explicit maintainer approval before proceeding"
type: blocker
- name: "status/needs-attention"
color: "FBCA04"
description: "Needs attention; not a hard merge blocker"
type: warning
- name: "status/build-pending"
color: "0075CA"
description: "Post-merge build triggered and in progress"
type: info
- name: "status/blocked"
color: "B60205"
description: "Blocked by an external dependency or unresolved issue"
type: blocker
- name: "status/ready-to-merge"
color: "0E8A16"
description: "All PR gates green; approved for merge"
type: info
# ── governance/ — Governance gate status (set by compliance-governance-gates.yml) ──
- name: "governance/drift"
color: "E11D48"
description: "Branch protection or governance config has drifted from policy"
type: blocker
- name: "governance/ok"
color: "0E8A16"
description: "Governance checks passed"
type: info
- name: "governance/wave-gate-fail"
color: "B60205"
description: "Wave A/B/C/D exit criterion not yet met"
type: blocker
- name: "governance/needs-attention"
color: "FBCA04"
description: "Governance item requires attention (waivers, drift, policy)"
type: warning
- name: "governance/doxygen-waiver"
color: "FBCA04"
description: "Approved temporary waiver for Tier-1 Doxygen coverage escalation"
type: warning
# ── security/ — Security findings (set by maintenance-issues.yml) ──
- name: "security"
color: "B60205"
description: "Open security finding requiring triage"
type: blocker
- name: "security/critical"
color: "B60205"
description: "Critical security finding; immediate action required"
type: blocker
- name: "security/pentest"
color: "D93F0B"
description: "Penetration test finding requiring follow-up"
type: warning
# ── scanner/ — Quality and gap scanner tracking ──
- name: "scanner/gs3"
color: "1D76DB"
description: "Gap scanner v3 finding"
type: warning
- name: "scanner/runtime"
color: "1D76DB"
description: "Runtime scanner finding"
type: warning
- name: "quality"
color: "5319E7"
description: "Quality and maintainability issue"
type: warning
- name: "quality/doxygen-failed"
color: "B60205"
description: "Doxygen governance gate failed on changed source code"
type: blocker
- name: "quality/doxygen-warning"
color: "FBCA04"
description: "Doxygen governance gate emitted non-blocking warning or waived coverage shortfall"
type: warning
- name: "maintenance"
color: "E4E669"
description: "Maintenance task"
type: info
# ── type: — Change type classification (set by actions/labeler and automation-community.yml) ──
- name: "type:documentation"
color: "0075CA"
description: "Documentation change"
type: info
- name: "type:test"
color: "0075CA"
description: "Test-only change"
type: info
- name: "type:ci"
color: "0075CA"
description: "CI/CD or build system change"
type: info
- name: "type:refactor"
color: "0075CA"
description: "Code refactoring without functional change"
type: info
- name: "type:build"
color: "0075CA"
description: "Build system or dependency change"
type: info
- name: "type:feature"
color: "0075CA"
description: "Feature implementation change"
type: info
- name: "type:bugfix"
color: "0075CA"
description: "Bug fix change"
type: info
- name: "type:performance"
color: "0075CA"
description: "Performance-oriented change"
type: info
- name: "type:security"
color: "0075CA"
description: "Security-focused code change"
type: info
- name: "breaking-change"
color: "B60205"
description: "Introduces a breaking API or behavior change"
type: blocker
- name: "migration-guide-needed"
color: "FBCA04"
description: "Requires a migration guide for consumers"
type: warning
- name: "ai-generated"
color: "C5DEF5"
description: "AI-assisted change; requires maintainer review before merge"
type: warning
- name: "release_critical"
color: "D93F0B"
description: "Change in a release-critical module; requires sign-off"
type: blocker
- name: "needs-triage"
color: "FBCA04"
description: "Requires initial triage"
type: warning
- name: "llm-ci-failure"
color: "B60205"
description: "LLM CI lane failed and needs follow-up"
type: blocker
- name: "severity:critical"
color: "B60205"
description: "Critical severity classification"
type: blocker
- name: "severity:high"
color: "D93F0B"
description: "High severity classification"
type: warning
- name: "severity:medium"
color: "FBCA04"
description: "Medium severity classification"
type: warning
- name: "severity:low"
color: "0E8A16"
description: "Low severity classification"
type: info
- name: "impact:single_module"
color: "C5DEF5"
description: "Impact is limited to a single module"
type: info
- name: "impact:multiple_modules"
color: "C5DEF5"
description: "Impact spans multiple modules"
type: warning
- name: "impact:core"
color: "D4C5F9"
description: "Impact affects core platform behavior"
type: warning
- name: "impact:api"
color: "D4C5F9"
description: "Impact affects public API behavior"
type: warning
- name: "impact:infrastructure"
color: "D4C5F9"
description: "Impact affects CI/CD or infrastructure behavior"
type: warning
# ── lane/priority labels — used by milestone automation ──
- name: "hot-patch"
color: "B60205"
description: "Urgent hot patch lane"
type: blocker
- name: "hotpatch"
color: "B60205"
description: "Legacy alias for hot patch lane"
type: blocker
- name: "long-term"
color: "5319E7"
description: "Long-term roadmap lane"
type: info
- name: "roadmap/long-term"
color: "5319E7"
description: "Long-term roadmap planning lane"
type: info
- name: "priority:critical"
color: "B60205"
description: "Critical priority work item"
type: blocker
- name: "priority:low"
color: "0E8A16"
description: "Low priority work item"
type: info
- name: "enhancement"
color: "84B6EB"
description: "Enhancement request"
type: info
- name: "docs"
color: "0075CA"
description: "Documentation lane marker"
type: info
- name: "backlog"
color: "E4E669"
description: "Backlog lane marker"
type: info
# ── wave: — Roadmap wave classification (set by actions/labeler) ──
- name: "wave:A"
color: "BFD4F2"
description: "Wave A module: access_model, search, sharding, replication, utils, updates, process, audit"
type: info
- name: "wave:B"
color: "BFD4F2"
description: "Wave B module: acceleration, llm, retrieval, tensor, gpu"
type: info
- name: "wave:C"
color: "BFD4F2"
description: "Wave C module: security, auth, governance"
type: info
- name: "wave:D"
color: "BFD4F2"
description: "Wave D module: observability, maintenance"
type: info
# ── area: — Module area classification (set by actions/labeler) ──
- name: "area:acceleration"
color: "C2E0C6"
description: "Acceleration / GPU / CUDA subsystem"
type: info
- name: "area:vector"
color: "C2E0C6"
description: "Vector search subsystem"
type: info
- name: "area:graph"
color: "C2E0C6"
description: "Graph subsystem"
type: info
- name: "area:storage"
color: "C2E0C6"
description: "Storage subsystem"
type: info
- name: "area:llm"
color: "C2E0C6"
description: "LLM / prompt engineering subsystem"
type: info
- name: "area:search"
color: "C2E0C6"
description: "Search / retrieval / RAG subsystem"
type: info
- name: "area:security"
color: "C2E0C6"
description: "Security / auth subsystem"
type: info
- name: "area:access-model"
color: "C2E0C6"
description: "Access model subsystem"
type: info
- name: "area:sharding"
color: "C2E0C6"
description: "Sharding subsystem"
type: info
- name: "area:replication"
color: "C2E0C6"
description: "Replication subsystem"
type: info
- name: "area:updates"
color: "C2E0C6"
description: "Updates subsystem"
type: info
- name: "area:process"
color: "C2E0C6"
description: "Process subsystem"
type: info
- name: "area:audit"
color: "C2E0C6"
description: "Audit / CDC subsystem"
type: info
- name: "area:observability"
color: "C2E0C6"
description: "Observability / telemetry subsystem"
type: info
- name: "area:plugins"
color: "C2E0C6"
description: "Plugin subsystem"
type: info
- name: "area:api"
color: "C2E0C6"
description: "API / gRPC subsystem"
type: info