From 71840b2f2b578aefb7110468f7e1c5d385e5c126 Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Fri, 22 Apr 2016 07:47:28 -0700 Subject: [PATCH] Fix email subjects that were hardcoding project Several of the templates were hardcoding '[project]' into the email subject line instead of '[{project}]' which means they have been improperly tagging the mail going to the jenkins mailing list. Change-Id: I7edebd46015cc8ea784219446875aeb8b1386b72 Signed-off-by: Andrew Grimberg --- jjb/integration/integration-templates.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jjb/integration/integration-templates.yaml b/jjb/integration/integration-templates.yaml index 963cffe96..9d4dc33bc 100644 --- a/jjb/integration/integration-templates.yaml +++ b/jjb/integration/integration-templates.yaml @@ -689,7 +689,7 @@ - archive: artifacts: '*log*' - email-notification: - email-prefix: '[project]' + email-prefix: '[{project}]' - job-template: name: '{project}-csit-1node-openstack-{openstack}-{functionality}-{stream}' @@ -778,7 +778,7 @@ - archive: artifacts: '*log*' - email-notification: - email-prefix: '[project]' + email-prefix: '[{project}]' - job-template: name: '{project}-csit-3node-openstack-{openstack}-{functionality}-{stream}' @@ -872,4 +872,4 @@ - archive: artifacts: '*log*' - email-notification: - email-prefix: '[project]' + email-prefix: '[{project}]' -- 2.36.6