Skip to content

Commit

Permalink
Add integration and needs incubation labels
Browse files Browse the repository at this point in the history
Closes #270 and helps with #297.
  • Loading branch information
annevk authored Oct 5, 2024
1 parent a4dbb6e commit dc723c4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
4 changes: 3 additions & 1 deletion LABELS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ These are labels used by all [WHATWG standards](https://spec.whatwg.org/):
* [i18n-klreq](https://github.com/search?q=org%3Awhatwg+label%3A%22i18n-klreq%22+is%3Aopen): Notifies Korean script experts of relevant issues
* [i18n-mlreq](https://github.com/search?q=org%3Awhatwg+label%3A%22i18n-mlreq%22+is%3Aopen): Notifies traditional Mongolian script experts of relevant issues
* [impacts documentation](https://github.com/search?q=org%3Awhatwg+label%3A%22impacts+documentation%22): Used by documentation communities, such as MDN, to track changes that impact documentation
* [integration](https://github.com/search?q=org%3Awhatwg+label%3A%22integration%22+is%3Aopen): Better coordination across standards needed
* [interop](https://github.com/search?q=org%3Awhatwg+label%3A%22interop%22+is%3Aopen): Implementations are not interoperable with each other
* [invalid](https://github.com/search?q=org%3Awhatwg+label%3A%22invalid%22+is%3Aopen): Used to mark off-topic or spam issues or PRs
* [meta](https://github.com/search?q=org%3Awhatwg+label%3A%22meta%22+is%3Aopen): Changes to the ecosystem around the standard, not its contents.
* [meta](https://github.com/search?q=org%3Awhatwg+label%3A%22meta%22+is%3Aopen): Changes to the ecosystem around the standard, not its contents
* [needs concrete proposal](https://github.com/search?q=org%3Awhatwg+label%3A%22needs+concrete+proposal%22+is%3Aopen): Moving the issue forward requires someone to figure out a detailed plan
* [needs implementer interest](https://github.com/search?q=org%3Awhatwg+label%3A%22needs+implementer+interest%22+is%3Aopen): Moving the issue forward requires implementers to express interest
* [needs incubation](https://github.com/search?q=org%3Awhatwg+label%3A%22needs+incubation%22+is%3Aopen): Reach out to [WHATWG Chat](https://whatwg.org/chat) or [WICG](https://wicg.io/) for help
* [needs tests](https://github.com/search?q=org%3Awhatwg+label%3A%22needs+tests%22+is%3Aopen): Moving the issue forward requires someone to write tests
* [removal/deprecation](https://github.com/search?q=org%3Awhatwg+label%3A%22removal%2Fdeprecation%22+is%3Aopen): Removing or deprecating a feature
* [security/privacy](https://github.com/search?q=org%3Awhatwg+label%3A%22security%2Fprivacy%22+is%3Aopen): There are security or privacy implications
Expand Down
12 changes: 11 additions & 1 deletion labels.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@
"name": "impacts documentation",
"url_exclude_is_open": true
},
{
"color": "e0a967",
"description": "Better coordination across standards needed",
"name": "integration"
},
{
"color": "c5def5",
"description": "Implementations are not interoperable with each other",
Expand All @@ -132,7 +137,7 @@
},
{
"color": "fcabe1",
"description": "Changes to the ecosystem around the standard, not its contents.",
"description": "Changes to the ecosystem around the standard, not its contents",
"name": "meta"
},
{
Expand All @@ -145,6 +150,11 @@
"description": "Moving the issue forward requires implementers to express interest",
"name": "needs implementer interest"
},
{
"color": "2eb3c4",
"description": "Reach out to [WHATWG Chat](https://whatwg.org/chat) or [WICG](https://wicg.io/) for help",
"name": "needs incubation"
},
{
"color": "b60205",
"description": "Moving the issue forward requires someone to write tests",
Expand Down
4 changes: 2 additions & 2 deletions labels.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ def add_label(common_url, token, label):
def adjust_repository_labels(organization, repository, token, labels_resource):
common_url = "https://api.github.com/repos/%s/%s/labels" % (organization, repository)

# Delete default GitHub labels except for "good first issue"
for label_name in ("bug", "duplicate", "enhancement", "help wanted", "invalid", "question", "wontfix"):
# Delete default GitHub labels except for "good first issue" and "invalid"
for label_name in ("bug", "duplicate", "enhancement", "help wanted", "question", "wontfix"):
delete_label(common_url, token, label_name)

# Update and add labels
Expand Down

0 comments on commit dc723c4

Please sign in to comment.