From 85fe680715c39d698450474188c11dadb70528ab Mon Sep 17 00:00:00 2001 From: Lukasz Lenart Date: Sat, 2 Sep 2023 08:40:05 +0200 Subject: [PATCH 1/2] 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 979e73f99e..6199de4fca 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: issues@struts.apache.org - # Send new/closed PR notifications to dev@ - pullrequests_status: dev@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: issues@struts.apache.org # Link opened PRs with JIRA diff --git a/Jenkinsfile b/Jenkinsfile index 4d13f02af2..e00cefb97e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -189,7 +189,7 @@ pipeline { failure { script { emailext( - to: "dev@struts.apache.org", + to: "commits@struts.apache.org", recipientProviders: [[$class: 'DevelopersRecipientProvider']], from: "Mr. Jenkins ", subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} failed", @@ -212,7 +212,7 @@ Director of Continuous Integration unstable { script { emailext( - to: "dev@struts.apache.org", + to: "commits@struts.apache.org", recipientProviders: [[$class: 'DevelopersRecipientProvider']], from: "Mr. Jenkins ", subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} unstable", @@ -235,7 +235,7 @@ Director of Continuous Integration fixed { script { emailext( - to: "dev@struts.apache.org", + to: "commits@struts.apache.org", recipientProviders: [[$class: 'DevelopersRecipientProvider']], from: 'Mr. Jenkins ', subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal", From 74e5aad4f803c25c7b15812eea5d4d21e38f5dd0 Mon Sep 17 00:00:00 2001 From: Lukasz Lenart Date: Sat, 2 Sep 2023 09:00:16 +0200 Subject: [PATCH 2/2] Update .asf.yaml Co-authored-by: Sebastian Peters --- .asf.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.asf.yaml b/.asf.yaml index 6199de4fca..2a7cde95d2 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -3,7 +3,7 @@ notifications: commits: commits@struts.apache.org # Send all issue emails (new, closed, comments) to issues@ issues: issues@struts.apache.org - # Send new/closed PR notifications to @commits + # Send new/closed PR notifications to commits@ pullrequests_status: commits@struts.apache.org # Send individual PR comments/reviews to issues@ pullrequests_comment: issues@struts.apache.org