Skip to content

Commit a507099

Browse files
author
Schalk Neethling
authoredDec 20, 2022
chore: add default labels workflow (mdn#52)
1 parent b33e344 commit a507099

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-0
lines changed
 

‎.github/labels.json

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
[
2+
{
3+
"name": "good first issue",
4+
"color": "028c46",
5+
"description": "A good issue for newcomers to get started with."
6+
},
7+
{
8+
"name": "help wanted",
9+
"color": "028c46",
10+
"description": "If you know something about this, we would love your help!"
11+
},
12+
{
13+
"name": "needs info",
14+
"color": "028c46",
15+
"description": "This needs more information to review or act on."
16+
},
17+
{
18+
"name": "needs triage",
19+
"color": "028c46",
20+
"description": "Triage needed by staff and/or partners. Automatically applied when an issue is opened."
21+
},
22+
{
23+
"name": "expert help needed",
24+
"color": "028c46",
25+
"description": "This needs more information from a subject matter expert (SME)."
26+
},
27+
{
28+
"name": "idle",
29+
"color": "028c46",
30+
"description": "Issues and pull requests with no activity for three months."
31+
},
32+
{
33+
"name": "on hold",
34+
"color": "028c46",
35+
"description": "Waiting on something else before this can be moved forward."
36+
},
37+
{
38+
"name": "for later",
39+
"color": "028c46",
40+
"description": "Not planned at this time."
41+
},
42+
{
43+
"name": "needs content update",
44+
"color": "028c46",
45+
"description": "Needs update to the content to support this change."
46+
},
47+
{
48+
"name": "chore",
49+
"color": "028c46",
50+
"description": "A routine task."
51+
},
52+
{
53+
"name": "enhancement",
54+
"color": "028c46",
55+
"description": "Improves an existing feature."
56+
},
57+
{
58+
"name": "bug",
59+
"color": "c05964",
60+
"description": "Indicates an unexpected problem or unintended behavior."
61+
},
62+
{
63+
"name": "wontfix",
64+
"color": "c05964",
65+
"description": "Deemed to be outside the scope of the project or would require significant time and resources to fix."
66+
},
67+
{
68+
"name": "effort: small",
69+
"color": "866dc1",
70+
"description": "Task is a small effort."
71+
},
72+
{
73+
"name": "effort: medium",
74+
"color": "866dc1",
75+
"description": "Task is a medium effort."
76+
},
77+
{
78+
"name": "effort: large",
79+
"color": "866dc1",
80+
"description": "Task is large effort."
81+
},
82+
{
83+
"name": "p0",
84+
"color": "6e8bc1",
85+
"description": "Urgent. We will address this as soon as possible."
86+
},
87+
{
88+
"name": "p1",
89+
"color": "6e8bc1",
90+
"description": "We will address this soon and will provide capacity from our team for it in the next few releases."
91+
},
92+
{
93+
"name": "p2",
94+
"color": "6e8bc1",
95+
"description": "We want to address this but may have other higher priority items."
96+
},
97+
{
98+
"name": "p3",
99+
"color": "6e8bc1",
100+
"description": "We don't have visibility when this will be addressed."
101+
}
102+
]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: set-default-labels
2+
on: [workflow_dispatch]
3+
4+
jobs:
5+
set-default-labels:
6+
uses: mdn/workflows/.github/workflows/set-default-labels.yml@main
7+
with:
8+
target-repo: "mdn/web-components-examples"
9+
should-delete-labels: true

0 commit comments

Comments
 (0)