diff --git a/Jenkinsfile b/Jenkinsfile index 94c03b8605..5012ba58aa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,8 +15,6 @@ try { node { stage ('Checkout') { - echo env.GIT_COMMITTER_EMAIL - echo env.GIT_AUTHOR_EMAIL checkout scm } stage ('Build') { @@ -52,13 +50,13 @@ try { } mail( - to: env.GIT_COMMITTER_EMAIL, + to: 'juan@verdnatura.es', subject: "Pipeline success: ${env.JOB_NAME} (${env.BUILD_NUMBER})", body: "Check status at ${env.BUILD_URL}" ) } catch(e) { mail( - to: env.GIT_COMMITTER_EMAIL, + to: 'juan@verdnatura.es', subject: "Pipeline failed: ${env.JOB_NAME} (${env.BUILD_NUMBER})", body: "Check status at ${env.BUILD_URL}" )