From 6a9b3e74df1cc524d59875d864a749552a6fc932 Mon Sep 17 00:00:00 2001 From: facelessuser Date: Mon, 31 Dec 2018 11:10:43 -0700 Subject: [PATCH] Add maintenance label --- tools/gh_labels.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/gh_labels.py b/tools/gh_labels.py index a994693e..449057e6 100644 --- a/tools/gh_labels.py +++ b/tools/gh_labels.py @@ -14,7 +14,7 @@ BUG = 'c45b46' FEATURE = '7b17d8' SUPPORT = 'efbe62' -DOCS = 'b2ffeb' +MAINTENANCE = 'b2ffeb' CATEGORY = '709ad8' SUBCATEGORY = 'bfd4f2' @@ -36,11 +36,12 @@ # Category 'core': (CATEGORY, "Related to the core code."), 'integration': (CATEGORY, "Related to packaging and/or testing."), + 'maintenance': (MAINTENANCE, "Maintenance chore."), 'docs': (CATEGORY, "Related to documentation."), # Sub categories - 'markdown-parser': (SUBCATEGORY, "Python Markdown parser"), - 'github-parser': (SUBCATEGORY, "GitHub parser"), + 'markdown-parser': (SUBCATEGORY, "Python Markdown parser."), + 'github-parser': (SUBCATEGORY, "GitHub parser."), 'gitlab-parser': (SUBCATEGORY, "GitLab parser."), 'other-parser': (SUBCATEGORY, "GitLab parser."),