diff --git a/.github/label-actions.yml b/.github/label-actions.yml index 2e1e13ad0c556ab954cbfd387ae342419e88c346..695ddeba99ea5165a3fd5cf8261321edbd8d30cc 100644 --- a/.github/label-actions.yml +++ b/.github/label-actions.yml @@ -202,7 +202,6 @@ unlabel: - 'type:bug' - 'type:feature' - - 'priority-5-triage' - 'status:requirements' comment: > **Please create a GitHub Discussion instead of this issue.** diff --git a/docs/development/issue-labeling.md b/docs/development/issue-labeling.md index 43c0fdfd5e423d9ddbf27a6706ba1d7a860e38c2..fbaf0428fde6aa50fd6bb2c1ed4233151594a19b 100644 --- a/docs/development/issue-labeling.md +++ b/docs/development/issue-labeling.md @@ -72,17 +72,15 @@ Add the `breaking` label for Issues or PRs which have changes that are not backw priority-2-high priority-3-medium priority-4-low - priority-5-triage </details> Use these to assign a priority level to an issue. -Incoming issues are labeled `priority-5-triage` by default, this label should be replaced with a proper priority (low/medium/high/critical). Try to select the proper priority. Nothing bad will happen if you select a "wrong" priority. At a high level: critical = needs immediate fix, high = to be prioritized ahead of others, medium = default priority, low = trivial issue, or impacts a very small percentage of the user base. -Use [this search](https://github.com/renovatebot/renovate/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+-label%3Apriority-1-critical+-label%3Apriority-2-high+-label%3Apriority-3-medium+-label%3Apriority-4-low++-label%3Apriority-5-triage) to find any issues which are missing a priority label. +Use [this search](https://github.com/renovatebot/renovate/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+-label%3Apriority-1-critical+-label%3Apriority-2-high+-label%3Apriority-3-medium+-label%3Apriority-4-low) to find any issues which are missing a priority label. ### Platform diff --git a/tools/docs/github-query-items.ts b/tools/docs/github-query-items.ts index c03461c5f979a92a47d7b1430bcb9d2cc38601cb..2bc9dfd02ee133956bbec528a33b4df85b982078 100644 --- a/tools/docs/github-query-items.ts +++ b/tools/docs/github-query-items.ts @@ -46,7 +46,7 @@ export interface Items { } export async function getOpenGitHubItems(): Promise<RenovateOpenItems> { - const q = `repo:renovatebot/renovate type:issue is:open -label:priority-5-triage`; + const q = `repo:renovatebot/renovate type:issue is:open`; const per_page = 100; try { const query = getQueryString({ q, per_page });