Skip to content

Commit

Permalink
Merge pull request apache#748 from apache/feature/notify-builds
Browse files Browse the repository at this point in the history
Moves all CI notifications to commits@ list
  • Loading branch information
lukaszlenart authored Sep 2, 2023
2 parents a0185f2 + 74e5aad commit f70feb1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 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: [email protected]
# Link opened PRs with JIRA
Expand Down
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ pipeline {
failure {
script {
emailext(
to: "dev@struts.apache.org",
to: "commits@struts.apache.org",
recipientProviders: [[$class: 'DevelopersRecipientProvider']],
from: "Mr. Jenkins <[email protected]>",
subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} failed",
Expand All @@ -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 <[email protected]>",
subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} unstable",
Expand All @@ -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 <[email protected]>',
subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal",
Expand Down

0 comments on commit f70feb1

Please sign in to comment.