Add docimpact tag for bugs that target project queues
For bugs that are filed against the project's queue rather than the
openstack-manuals queue, it's useful to classify them further by
adding a doc-relevant tag. This way, the project's bug team can do
a much easier look up to ensure that these bugs do not go unnoticed.
Change-Id: Ic9d2bdffd4acca3bb093f5037e62582961919ebf
diff --git a/jeepyb/cmd/notify_impact.py b/jeepyb/cmd/notify_impact.py
index c307ede..f30f042 100644
--- a/jeepyb/cmd/notify_impact.py
+++ b/jeepyb/cmd/notify_impact.py
@@ -47,6 +47,7 @@
logger = logging.getLogger('notify_impact')
+DOC_TAG = "doc"
BASE_DIR = '/home/gerrit2/review_site'
EMAIL_TEMPLATE = """
Hi, I'd like you to take a look at this patch for potential
@@ -72,9 +73,17 @@
self.lpconn = lpconn
def create(self, project, bug_title, bug_descr, args):
+ # If the bug report is not targeting the 'openstack-manuals'
+ # project, add an extra doc tag to make the bug easier to
+ # look up.
+ lp_target_project = str(project).split('/')[-1]
+ tags = args.project.split('/')[1]
+ if lp_target_project != 'openstack-manuals':
+ tags = [tags, DOC_TAG]
+
buginfo = self.lpconn.bugs.createBug(
target=project, title=bug_title,
- description=bug_descr, tags=args.project.split('/')[1])
+ description=bug_descr, tags=tags)
buglink = buginfo.web_link
return buginfo, buglink