From cbf645b2f4cb743f2ced7579b2fad3c1d4bb8d65 Mon Sep 17 00:00:00 2001 From: Tushar Date: Sat, 18 Apr 2026 18:18:40 +0530 Subject: [PATCH] chore(labels): add severity low high critical labels --- .github/labels.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/labels.json b/.github/labels.json index 4622671e26..27f0e977c7 100644 --- a/.github/labels.json +++ b/.github/labels.json @@ -327,5 +327,23 @@ "color": "F9C74F", "description": "This bounty has been completed and the reward paid out.", "aliases": ["bounty:rewarded", "bounty:earned"] + }, + { + "name": "severity: low", + "color": "FFEB3B", + "description": "Minor impact; does not significantly affect functionality.", + "aliases": ["severity:low"] + }, + { + "name": "severity: high", + "color": "FF9800", + "description": "Significant impact; core functionality is impaired.", + "aliases": ["severity:high"] + }, + { + "name": "severity: critical", + "color": "B71C1C", + "description": "Severe impact; system is unusable or data is at risk.", + "aliases": ["severity:critical", "critical"] } ]