This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch feature/notify-builds in repository https://gitbox.apache.org/repos/asf/struts.git
commit 85fe680715c39d698450474188c11dadb70528ab Author: Lukasz Lenart <[email protected]> AuthorDate: Sat Sep 2 08:40:05 2023 +0200 Moves all CI notifications to commits@ list --- .asf.yaml | 4 ++-- Jenkinsfile | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.asf.yaml b/.asf.yaml index 979e73f99..6199de4fc 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -3,8 +3,8 @@ notifications: commits: [email protected] # Send all issue emails (new, closed, comments) to issues@ issues: [email protected] - # Send new/closed PR notifications to dev@ - pullrequests_status: [email protected] + # Send new/closed PR notifications to @commits + pullrequests_status: [email protected] # Send individual PR comments/reviews to issues@ pullrequests_comment: [email protected] # Link opened PRs with JIRA diff --git a/Jenkinsfile b/Jenkinsfile index 4d13f02af..e00cefb97 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -189,7 +189,7 @@ pipeline { failure { script { emailext( - to: "[email protected]", + to: "[email protected]", recipientProviders: [[$class: 'DevelopersRecipientProvider']], from: "Mr. Jenkins <[email protected]>", subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} failed", @@ -212,7 +212,7 @@ Director of Continuous Integration unstable { script { emailext( - to: "[email protected]", + to: "[email protected]", recipientProviders: [[$class: 'DevelopersRecipientProvider']], from: "Mr. Jenkins <[email protected]>", subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} unstable", @@ -235,7 +235,7 @@ Director of Continuous Integration fixed { script { emailext( - to: "[email protected]", + to: "[email protected]", recipientProviders: [[$class: 'DevelopersRecipientProvider']], from: 'Mr. Jenkins <[email protected]>', subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal",
