forked from apache/struts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request apache#748 from apache/feature/notify-builds
Moves all CI notifications to commits@ list
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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", | ||
|
@@ -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", | ||
|