From 538bc52bd9d5b0d5348c7ebbb4ce97f286f1546b Mon Sep 17 00:00:00 2001 From: ZeWaka Date: Wed, 13 Jan 2021 08:03:14 -0800 Subject: [PATCH] Adds KeywordLabeler bot configuration for user PR labeling (#2956) --- .github/keylabeler.yml | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/keylabeler.yml diff --git a/.github/keylabeler.yml b/.github/keylabeler.yml new file mode 100644 index 0000000000..5f669179a7 --- /dev/null +++ b/.github/keylabeler.yml @@ -0,0 +1,47 @@ +# Determines if we search the title (optional). Defaults to true. +matchTitle: false + +# Determines if we search the body (optional). Defaults to true. +matchBody: true + +# Determines if label matching is case sensitive (optional). Defaults to true. +caseSensitive: false + +# Explicit keyword mappings to labels. Form of match:label. Required. +labelMappings: + "[ATMOS]": "Feature: Atmospherics" + "[AUDIO]": "Feature: Audio" + "[CONSTRUCTION]": "Feature: Construction" + "[ENTITIES]": "Feature: Entities" + "[ENTITY]": "Feature: Entities" + "[ENTITY AI]": "Feature: Entity AI" + "[EVENTS]": "Feature: Events" + "[EVENT]": "Feature: Events" + "[INTERACTION]": "Feature: Interaction" + "[MEDICAL]": "Feature: Medical" + "[PHYSICS]": "Feature: Physics" + "[POWER]": "Feature: Power" + "[SPRITES]": "Feature: Sprites" + "[SPRITE]": "Feature: Sprites" + "[UI]": "Feature: UI" + + "[BUG]": "Type: Bug" + "[CLEANUP]": "Type: Cleanup" + "[CLEAN]": "Type: Cleanup" + "[CLEANLINESS]": "Type: Cleanup" + "[DISCUSSION]": "Type: Discussion" + "[DISCUSS]": "Type: Discussion" + "[FEATURE]": "Type: Feature" + "[FEAT]": "Type: Feature" + "[IMPROVEMENT]": "Type: Improvement" + "[IMPROVE]": "Type: Improvement" + "[PERFORMANCE]": "Type: Performance" + "[PERF]": "Type: Performance" + "[REFACTOR]": "Type: Refactor" + + "[HELP WANTED]": "Status: Help Wanted" + "[DO NOT MERGE]": "Status: DO NOT MERGE" + "[DNM]": "Status: DO NOT MERGE" + + "[RESOURCES]": "Resources (No code)" + "[NOCODE]": "Resources (No code)"