[struts] branch feature/notify-builds created (now 85fe68071)

2023-09-01 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch feature/notify-builds
in repository https://gitbox.apache.org/repos/asf/struts.git


  at 85fe68071 Moves all CI notifications to commits@ list

This branch includes the following new commits:

 new 85fe68071 Moves all CI notifications to commits@ list

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




[struts] 01/01: Moves all CI notifications to commits@ list

2023-09-01 Thread lukaszlenart
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 
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 ",
 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 ",
 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 ',
 subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} back to 
normal",