Skip to content

Commit

Permalink
chore: drop priority-5-triage label (#25024)
Browse files Browse the repository at this point in the history
  • Loading branch information
HonkingGoose committed Oct 4, 2023
1 parent 6aaf8df commit 6ab3f46
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/label-actions.yml
Expand Up @@ -202,7 +202,6 @@
unlabel:
- 'type:bug'
- 'type:feature'
- 'priority-5-triage'
- 'status:requirements'
comment: >
**Please create a GitHub Discussion instead of this issue.**
Expand Down
4 changes: 1 addition & 3 deletions docs/development/issue-labeling.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tools/docs/github-query-items.ts
Expand Up @@ -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 });
Expand Down

0 comments on commit 6ab3f46

Please sign in to comment.