]> granicus.if.org Git - icinga2/commitdiff
changelog.py: Add "backported" to the list of ignored labels 5599/head
authorMichael Friedrich <michael.friedrich@icinga.com>
Thu, 21 Sep 2017 08:45:48 +0000 (10:45 +0200)
committerMichael Friedrich <michael.friedrich@icinga.com>
Thu, 21 Sep 2017 08:45:48 +0000 (10:45 +0200)
changelog.py

index f3b4726ac62d5d8a3ef7eca656ddd55d21dfd5fa..f8cd361c2d91b3d41919fb0b7a86ad7d6f8e0d1b 100755 (executable)
@@ -30,6 +30,8 @@ except:
 changelog_file = "CHANGELOG.md" # TODO: config param
 debug = 1
 
+ignored_labels = ["high", "low", "bug", "enhancement", "feedback", "question", "backported"]
+
 #################################
 ## Helpers
 
@@ -87,7 +89,7 @@ def escape_markdown(text):
     return re.sub("([<>*_()\[\]#])", r"\\\1", tmp)
 
 def format_labels(issue):
-    labels = filter(lambda label: label not in ["high", "low", "bug", "enhancement", "feedback", "question"], [label["name"] for label in issue["labels"]])
+    labels = filter(lambda label: label not in ignored_labels, [label["name"] for label in issue["labels"]])
 
     if len(labels):
         return " (" + ", ".join(labels) + ")"