diff --git a/LABELS.md b/LABELS.md index cc5fe18..9e21972 100644 --- a/LABELS.md +++ b/LABELS.md @@ -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 diff --git a/labels.json b/labels.json index 1abd8fa..c5639da 100644 --- a/labels.json +++ b/labels.json @@ -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", @@ -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" }, { @@ -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", diff --git a/labels.py b/labels.py index 9df2c1a..727c737 100755 --- a/labels.py +++ b/labels.py @@ -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