Skip to content

Commit

Permalink
Add new labels (#896)
Browse files Browse the repository at this point in the history
I've been meaning to suggest this for a while, but I think we could do with a few more labels.

Adding:

- informational - for posting notices of changes or things like that
- poll - for requesting feedback on issues/potential changes
- ideal-for-contribution / good-first-issue - for trying to solicit more contributions
- on-hold - for things we don't want to close, but don't see working on anytime soon or are blocked by other issues

Signed-off-by: Daniel Mikusa <[email protected]>

Signed-off-by: Daniel Mikusa <[email protected]>
  • Loading branch information
dmikusa authored Nov 8, 2022
1 parent 2488e5f commit 4f70353
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions octo/labels.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,31 @@ func ContributeLabels(descriptor Descriptor) ([]Contribution, error) {
Description: "A general task",
Color: "e3d9fc",
},
{
Name: "type:informational",
Description: "Provides information or notice to the community",
Color: "e3d9fc",
},
{
Name: "type:poll",
Description: "Request for feedback from the community",
Color: "e3d9fc",
},
{
Name: "note:ideal-for-contribution",
Description: "An issue that a contributor can help us with",
Color: "54f7a8",
},
{
Name: "note:on-hold",
Description: "We can't start working on this issue yet",
Color: "54f7a8",
},
{
Name: "note:good-first-issue",
Description: "A good first issue to get started with",
Color: "54f7a8",
},
}

if c, err := NewLabelsContribution(l); err != nil {
Expand Down

0 comments on commit 4f70353

Please sign in to comment.