diff --git a/Jenkinsfile b/Jenkinsfile index 21a05f414b..fdd690a90b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ node() { // No specific label disableConcurrentBuilds() ]) - String defaultEmailRecipients = env.EMAIL_RECIPIENTS + String defaultEmailRecipients = env.EMAIL_SCM_RECIPIENTS catchError { @@ -40,5 +40,5 @@ node() { // No specific label // Archive Unit and integration test results, if any junit allowEmptyResults: true, testResults: '**/target/failsafe-reports/TEST-*.xml,**/target/surefire-reports/TEST-*.xml,**/target/jest-reports/TEST-*.xml' - mailIfStatusChanged(findEmailRecipients(defaultEmailRecipients)) + mailIfStatusChanged(defaultEmailRecipients) }