Allow filtering by issue tags.

This commit is contained in:
2020-11-12 07:37:22 -06:00
parent ef16eafd48
commit f8fed9d937
4 changed files with 16 additions and 3 deletions

View File

@@ -466,6 +466,10 @@ Options:
filter.properties["context"] = ctx.defaultContext.get
filterOption = some(filter)
if args["--tags"]:
filter.hasTags = ($args["--tags"]).split(',')
filterOption = some(filter)
# Finally, if the "context" is "all", don't filter on context
if filter.properties.hasKey("context") and
filter.properties["context"] == "all":