You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2020/08/23 21:22:05 UTC

[logging-pipelines] branch master updated: Use correct reference to email template

This is an automated email from the ASF dual-hosted git repository.

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-pipelines.git


The following commit(s) were added to refs/heads/master by this push:
     new b93ba48  Use correct reference to email template
b93ba48 is described below

commit b93ba48016bd3c275b4e29b2e1c5ae5d077e007e
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Sun Aug 23 16:21:48 2020 -0500

    Use correct reference to email template
---
 vars/notifyBuildFailed.groovy   | 2 +-
 vars/notifyBuildFixed.groovy    | 2 +-
 vars/notifyBuildUnstable.groovy | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/vars/notifyBuildFailed.groovy b/vars/notifyBuildFailed.groovy
index c2be9fd..232cd47 100644
--- a/vars/notifyBuildFailed.groovy
+++ b/vars/notifyBuildFailed.groovy
@@ -2,5 +2,5 @@ def call() {
     emailext to: 'notifications@logging.apache.org',
         from: 'Mr. Jenkins <je...@ci-builds.apache.org>',
         subject: "[CI][FAILURE] ${env.JOB_NAME}#${env.BUILD_NUMBER} has potential issues",
-        body: '${SCRIPT, template="groovy-text.template"}'
+        body: '${JELLY_SCRIPT,template="text"}'
 }
diff --git a/vars/notifyBuildFixed.groovy b/vars/notifyBuildFixed.groovy
index 3f4172a..8dda0c2 100644
--- a/vars/notifyBuildFixed.groovy
+++ b/vars/notifyBuildFixed.groovy
@@ -2,5 +2,5 @@ def call() {
     emailext to: 'notifications@logging.apache.org',
         from: 'Mr. Jenkins <je...@ci-builds.apache.org>',
         subject: "[CI][SUCCESS] ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal",
-        body: '${SCRIPT, template="groovy-text.template"}'
+        body: '${JELLY_SCRIPT,template="text"}'
 }
diff --git a/vars/notifyBuildUnstable.groovy b/vars/notifyBuildUnstable.groovy
index 84f6cf3..2ac59a8 100644
--- a/vars/notifyBuildUnstable.groovy
+++ b/vars/notifyBuildUnstable.groovy
@@ -2,5 +2,5 @@ def call() {
     emailext to: 'notifications@logging.apache.org',
         from: 'Mr. Jenkins <je...@ci-builds.apache.org>',
         subject: "[CI][UNSTABLE] ${env.JOB_NAME}#${env.BUILD_NUMBER} has test failures",
-        body: '${SCRIPT, template="text.jelly"}'
+        body: '${JELLY_SCRIPT,template="text"}'
 }