From 6ab3f46cd59b3a5983d8b69092e9e1a8f9c58e03 Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Wed, 4 Oct 2023 12:23:36 +0200 Subject: [PATCH] chore: drop `priority-5-triage` label (#25024) --- .github/label-actions.yml | 1 - docs/development/issue-labeling.md | 4 +--- tools/docs/github-query-items.ts | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/label-actions.yml b/.github/label-actions.yml index 2e1e13ad0c..695ddeba99 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 43c0fdfd5e..fbaf0428fd 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 c03461c5f9..2bc9dfd02e 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 }); -- GitLab