Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add default labels #30

Merged
merged 1 commit into from
Dec 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 102 additions & 0 deletions .github/labels.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
[
{
"name": "good first issue",
"color": "028c46",
"description": "A good issue for newcomers to get started with."
},
{
"name": "help wanted",
"color": "028c46",
"description": "If you know something about this, we would love your help!"
},
{
"name": "needs info",
"color": "028c46",
"description": "This needs more information to review or act on."
},
{
"name": "needs triage",
"color": "028c46",
"description": "Triage needed by staff and/or partners. Automatically applied when an issue is opened."
},
{
"name": "expert help needed",
"color": "028c46",
"description": "This needs more information from a subject matter expert (SME)."
},
{
"name": "idle",
"color": "028c46",
"description": "Issues and pull requests with no activity for three months."
},
{
"name": "on hold",
"color": "028c46",
"description": "Waiting on something else before this can be moved forward."
},
{
"name": "for later",
"color": "028c46",
"description": "Not planned at this time."
},
{
"name": "needs content update",
"color": "028c46",
"description": "Needs update to the content to support this change."
},
{
"name": "chore",
"color": "028c46",
"description": "A routine task."
},
{
"name": "enhancement",
"color": "028c46",
"description": "Improves an existing feature."
},
{
"name": "bug",
"color": "c05964",
"description": "Indicates an unexpected problem or unintended behavior."
},
{
"name": "wontfix",
"color": "c05964",
"description": "Deemed to be outside the scope of the project or would require significant time and resources to fix."
},
{
"name": "effort: small",
"color": "866dc1",
"description": "Task is a small effort."
},
{
"name": "effort: medium",
"color": "866dc1",
"description": "Task is a medium effort."
},
{
"name": "effort: large",
"color": "866dc1",
"description": "Task is large effort."
},
{
"name": "p0",
"color": "6e8bc1",
"description": "Urgent. We will address this as soon as possible."
},
{
"name": "p1",
"color": "6e8bc1",
"description": "We will address this soon and will provide capacity from our team for it in the next few releases."
},
{
"name": "p2",
"color": "6e8bc1",
"description": "We want to address this but may have other higher priority items."
},
{
"name": "p3",
"color": "6e8bc1",
"description": "We don't have visibility when this will be addressed."
}
]
9 changes: 9 additions & 0 deletions .github/workflows/set-default-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: set-default-labels
on: [workflow_dispatch]

jobs:
set-default-labels:
uses: mdn/workflows/.github/workflows/set-default-labels.yml@main
with:
target-repo: "mdn/webassembly-examples"
should-delete-labels: true