From 4a17757ed1544db6ef6bacaae0a51ac3f47a0216 Mon Sep 17 00:00:00 2001 From: Ty Overby Date: Tue, 3 May 2016 10:12:22 -0700 Subject: [PATCH] only mail to infraswat (#10999) --- netci.groovy | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/netci.groovy b/netci.groovy index cfb2a4508a3..03e336295ba 100644 --- a/netci.groovy +++ b/netci.groovy @@ -9,9 +9,10 @@ def project = GithubProject static void addEmailPublisher(def myJob) { myJob.with { publishers { - extendedEmail('$DEFAULT_RECIPIENTS, cc:mlinfraswat@microsoft.com', '$DEFAULT_SUBJECT', '$DEFAULT_CONTENT') { - trigger('Aborted', '$PROJECT_DEFAULT_SUBJECT', '$PROJECT_DEFAULT_CONTENT', null, true, true, true, true) - trigger('Failure', '$PROJECT_DEFAULT_SUBJECT', '$PROJECT_DEFAULT_CONTENT', null, true, true, true, true) + extendedEmail('mlinfraswat@microsoft.com', '$DEFAULT_SUBJECT', '$DEFAULT_CONTENT') { + // trigger(trigger name, subject, body, recipient list, send to developers, send to requester, include culprits, send to recipient list) + trigger('Aborted', '$PROJECT_DEFAULT_SUBJECT', '$PROJECT_DEFAULT_CONTENT', null, false, false, false, true) + trigger('Failure', '$PROJECT_DEFAULT_SUBJECT', '$PROJECT_DEFAULT_CONTENT', null, false, false, false, true) } } } -- GitLab