From 131abf4f46c32ae39cb9373b4027ac7dcb437c9c Mon Sep 17 00:00:00 2001 From: Samira Ouaaz Date: Thu, 18 Nov 2021 00:16:38 -0500 Subject: [PATCH] add post action with email --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3bac794..67f0e85 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,8 +23,8 @@ pipeline { post { always { mail to:"ouaazs@algonquincollege.com", -          subject:"STATUS FOR PROJECT: ${currentBuild.fullDisplayName}", -          body: "RESULT: ${currentBuild.result}"   + subject:"STATUS FOR PROJECT: ${currentBuild.fullDisplayName}", + body: "RESULT: ${currentBuild.result}"   } } }