/ .github / labels.yml
labels.yml
 1  - name: "bug: unconfirmed"
 2    description: A bug that needs to be reproduced.
 3    color: 6C1010
 4  - name: "bug: irreproducible"
 5    description: A bug that has not been successfully reproduced, despite efforts
 6    color: EEEEEE
 7  - name: "bug: confirmed"
 8    description: A bug that has been confirmed in triage
 9    color: F80000
10  - name: "bug: fixed"
11    description: A bug that has been fixed in a release
12    color: FF8383
13  - name: "bug: fixed-in-next"
14    description: Bugs present in the current release but fixed on the main branch
15    color: 36080A
16  - name: "type: feat"
17    description: A new feature
18    color: 26E9FF
19  - name: "type: fix"
20    description: A bug fix
21    color: D71F1F
22  - name: "type: style"
23    description: A change that does not affect the functionality of project code
24    color: FFD1DC
25  - name: "type: refactor"
26    description: A change that does not fix a bug or add a feature
27    color: FFFF00
28  - name: "type: perf"
29    description: Improve performance
30    color: FFFF00
31  - name: "type: test"
32    description: Add or correct tests
33    color: FFFF00
34  - name: "type: build"
35    description: A change to the build system and external dependencies
36    color: FFFF00
37  - name: "type: ci"
38    description: A change to CI configuration and scripts
39    color: FFFF00
40  - name: "type: chore"
41    description: A change unrelated to project code
42    color: FFFF00
43  - name: "type: revert"
44    description: Undo previous changes
45    color: FFFF00
46  - name: "version: breaking"
47    description: PRs with breaking changes, requiring a major release
48    color: 9A35BE
49  - name: "status: needs-help"
50    description: Issues that require assistance
51    color: 128A0C
52  - name: "cat: rfc"
53    description: Feature requests and general proposals
54    color: FCFCFC
55  - name: "cat: qna"
56    description: A user question
57    color: FCFCFC
58  - name: "cat: deps"
59    description: A dependency upgrade
60    color: FCFCFC
61  - name: "cat: new-check"
62    description: Extraction and implementation of, or a request for, a new check
63    color: FCFCFC
64  - name: "cat: false-positive"
65    description: False-positives in checks
66    color: CD2026