Skip to content
This repository was archived by the owner on Jun 2, 2023. It is now read-only.

Commit 478c5fc

Browse files
committed
feat: add initial set of org-wide labels
1 parent b51ca13 commit 478c5fc

File tree

1 file changed

+92
-6
lines changed

1 file changed

+92
-6
lines changed

migrate/labels.yml

+92-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,84 @@
11
# Repository labels to be synced across the entire org.
2-
# For picking hex colors, you can use: https://www.htmlcolor-picker.com/
2+
# Every item must have a name, color, and description.
3+
# Notes:
4+
# * Repositories may define their own labels as long as they don't
5+
# conflict with what's listed here.
6+
# * Whenever a repo has a matching label, that label will be updated. If there
7+
# is no matching label, the label will be created anew. "Matching" is determined
8+
# by comparing the label's lowercased name, with all puncutation, emoji, and special
9+
# chars removed.
10+
# * For picking hex colors, you might use: https://www.htmlcolor-picker.com/
311

4-
- name: ":hammer and wrench: maintenance"
5-
color: "169509" # grassy green
12+
### COMMUNITY LABELS
13+
14+
- name: "good first issue"
15+
color: "42dd35" # friendly lime green
16+
description: "A good task for a newcomer to start with"
17+
18+
- name: "help wanted"
19+
color: "54976d" # fenway green
20+
description: "Ready to be picke up by anyone in the community"
21+
22+
- name: "DEPR"
23+
color: "3c3cc3" # indigo-blue
24+
description: "Proposal for depreaction & removal per OEP-21"
25+
26+
27+
### KINDS OF WORK
28+
29+
- name: "maintenance"
30+
color: "ff9125" # construction orange
631
description: "Work that must be done for platform health"
732

33+
- name: "discovery"
34+
color: "d876e3" # a curious shade of lavendar
35+
description: "Pre-work to determine if an idea is feasible"
36+
37+
- name: "bug"
38+
color: "d93f0b" # scarlet red
39+
description: "Something isn't working"
40+
41+
- name: "enhancement"
42+
color: "a2eeef" # refreshing light teal
43+
description: "Update or improvement to an existing feature"
44+
45+
- name: "feature"
46+
color: "05d1dc" # teal for real
47+
description: "Addition of new functionality"
48+
49+
50+
### SCOPES OF WORK
51+
52+
- name: "epic"
53+
color: "7e027e" # epic violet
54+
description: "Large unit of work, consisting of multiple tasks"
55+
56+
- name: "initiative"
57+
color: "340963" # formidably deep mauve
58+
description: "Huge unit of work, consisting of multiple epics"
59+
60+
61+
### ISSUE OUTCOMES
62+
63+
- name: "wontfix"
64+
color: "ffffff" # white
65+
description: "This will not be worked on"
66+
67+
- name: "duplicate"
68+
color: "cfd3d7" # duplicitous grey
69+
description: "This issue or pull request already exists elsewhere"
70+
71+
72+
### PR TRIAGE WORKFLOW
73+
874
- name: "waiting on author"
975
color: "bfd6f6" # baby blue
1076
description: "PR reviewers are waiting on the author to answer questions, fix tests, etc."
1177

78+
- name: "inactive"
79+
color: "cc950a" # clay-ish brown
80+
description: "PR author has been unresponsive for several months"
81+
1282
- name: "closed-inactivity"
1383
color: "dbcd00" # gold
1484
description: "PR was closed because the author abandoned it"
@@ -17,6 +87,22 @@
1787
color: "f5424b" # crimson red
1888
description: "Author's first PR to a repository, awaiting test authorization from Axim"
1989

20-
- name: "good first issue :tada:"
21-
color: "42dd35" # lime green
22-
description: "A good task for a newcomer to start with"
90+
- name: "core contributor"
91+
color: "000000" # black
92+
description: "PR is Core Contributor with rights in this repository (manually added)"
93+
94+
- name: "open-source-contribution"
95+
color: "f0f0f0" # light grey
96+
description: "PR author is not from Axim or 2U"
97+
98+
- name: "blocked by other work"
99+
color: "ffa500" # yellow orange
100+
description: "PR cannot be finished until other work is complete"
101+
102+
- name: "changes requested"
103+
color: "76a4e3" # cornflower blue
104+
description: "PR reviewers are waiting on author to apply feedback"
105+
106+
- name: "product review"
107+
color: "c97bf7" # light puple
108+
description: "PR requires product review before merging"

0 commit comments

Comments
 (0)