Moves all CI notifications to commits@ list

This commit is contained in:
Lukasz Lenart
2023-09-02 08:40:05 +02:00
parent a0185f2483
commit 85fe680715
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -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
Vendored
+3 -3
View File
@@ -189,7 +189,7 @@ pipeline {
failure {
script {
emailext(
to: "dev@struts.apache.org",
to: "commits@struts.apache.org",
recipientProviders: [[$class: 'DevelopersRecipientProvider']],
from: "Mr. Jenkins <jenkins@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: "dev@struts.apache.org",
to: "commits@struts.apache.org",
recipientProviders: [[$class: 'DevelopersRecipientProvider']],
from: "Mr. Jenkins <jenkins@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: "dev@struts.apache.org",
to: "commits@struts.apache.org",
recipientProviders: [[$class: 'DevelopersRecipientProvider']],
from: 'Mr. Jenkins <jenkins@builds.apache.org>',
subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal",