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 <lukaszlen...@apache.org> 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: commits@struts.apache.org # Send all issue emails (new, closed, comments) to issues@ issues: iss...@struts.apache.org - # Send new/closed PR notifications to dev@ - pullrequests_status: d...@struts.apache.org + # Send new/closed PR notifications to @commits + pullrequests_status: commits@struts.apache.org # Send individual PR comments/reviews to issues@ pullrequests_comment: iss...@struts.apache.org # 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: "d...@struts.apache.org", + to: "commits@struts.apache.org", recipientProviders: [[$class: 'DevelopersRecipientProvider']], from: "Mr. Jenkins <jenk...@builds.apache.org>", subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} failed", @@ -212,7 +212,7 @@ Director of Continuous Integration unstable { script { emailext( - to: "d...@struts.apache.org", + to: "commits@struts.apache.org", recipientProviders: [[$class: 'DevelopersRecipientProvider']], from: "Mr. Jenkins <jenk...@builds.apache.org>", subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} unstable", @@ -235,7 +235,7 @@ Director of Continuous Integration fixed { script { emailext( - to: "d...@struts.apache.org", + to: "commits@struts.apache.org", recipientProviders: [[$class: 'DevelopersRecipientProvider']], from: 'Mr. Jenkins <jenk...@builds.apache.org>', subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal",