Skip to content

Commit

Permalink
Don't spam all commiters by email
Browse files Browse the repository at this point in the history
Limit the notifications made by Jenkins to only two people.
  • Loading branch information
juanluisrp authored Nov 27, 2023
1 parent 39ebfba commit 9b6d4f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pipeline {
def details = """<h1>${env.JOB_NAME} - Build #${env.BUILD_NUMBER} - ${status}</h1>
<p>Check console output at <a href="${url}">${env.JOB_BASE_NAME} - #${env.BUILD_NUMBER}</a></p>
"""
emailext (subject: summary, body: details, attachLog: true, compressLog: true, recipientProviders: [ [$class: 'CulpritsRecipientProvider']])
emailext (subject: summary, body: details, attachLog: true, compressLog: true, to: '[email protected], [email protected]')
}
}
}
Expand Down

0 comments on commit 9b6d4f2

Please sign in to comment.