diff --git a/.github/labels.json b/.github/labels.json index 6b9c2034..5c7eb7d1 100644 --- a/.github/labels.json +++ b/.github/labels.json @@ -10,6 +10,11 @@ "colour": "#EDEDED", "description": "general questions" }, + "feature": { + "name": "type:feature_request", + "colour": "#43952A", + "description": "feature request" + }, "invalid_question": { "name": "type:invalid question", "colour": "#CF2E1F", @@ -82,8 +87,21 @@ } ] }, + "feature": { + "requires": 1, + "conditions": [ + { + "type": "titleMatches", + "pattern": "/feature/i" + }, + { + "type": "descriptionMatches", + "pattern": "/Describe the feature/i" + } + ] + }, "without_playground": { - "requires": 5, + "requires": 6, "conditions": [ { "type": "descriptionMatches", @@ -97,6 +115,10 @@ "type": "descriptionMatches", "pattern": "/^((?!question).)*$/is" }, + { + "type": "descriptionMatches", + "pattern": "/^((?!Describe the feature).)*$/is" + }, { "type": "titleMatches", "pattern": "/^((?!critical|urgent).)*$/s"