Title: [266256] trunk/Tools
Revision
266256
Author
[email protected]
Date
2020-08-27 14:31:38 -0700 (Thu, 27 Aug 2020)

Log Message

Send ews email notifications to myself
https://bugs.webkit.org/show_bug.cgi?id=215815

Reviewed by Jonathan Bedard.

* BuildSlaveSupport/ews-build/send_email.py:
(send_email_to_patch_author): Send a copy of email notification to myself.
* BuildSlaveSupport/ews-build/master.cfg: Stop receiveing old style email notifications for build failures.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/ews-build/master.cfg (266255 => 266256)


--- trunk/Tools/BuildSlaveSupport/ews-build/master.cfg	2020-08-27 21:28:18 UTC (rev 266255)
+++ trunk/Tools/BuildSlaveSupport/ews-build/master.cfg	2020-08-27 21:31:38 UTC (rev 266256)
@@ -68,7 +68,7 @@
     fromaddr='[email protected]',
     sendToInterestedUsers=False,
     extraRecipients=['[email protected]'],
-    mode=('failing', 'exception'),
+    mode=('exception'),
     addPatch=False)
 
 if not is_test_mode_enabled:

Modified: trunk/Tools/BuildSlaveSupport/ews-build/send_email.py (266255 => 266256)


--- trunk/Tools/BuildSlaveSupport/ews-build/send_email.py	2020-08-27 21:28:18 UTC (rev 266255)
+++ trunk/Tools/BuildSlaveSupport/ews-build/send_email.py	2020-08-27 21:31:38 UTC (rev 266256)
@@ -71,6 +71,7 @@
 def send_email_to_patch_author(author_email, subject, text, reference=''):
     if not author_email:
         return
+    send_email(['[email protected]'], subject, text, reference)
     if author_email in get_email_ids('EMAIL_IDS_TO_UNSUBSCRIBE'):
         print('email {} is in unsubscribe list, skipping email'.format(author_email))
         return

Modified: trunk/Tools/ChangeLog (266255 => 266256)


--- trunk/Tools/ChangeLog	2020-08-27 21:28:18 UTC (rev 266255)
+++ trunk/Tools/ChangeLog	2020-08-27 21:31:38 UTC (rev 266256)
@@ -1,3 +1,14 @@
+2020-08-27  Aakash Jain  <[email protected]>
+
+        Send ews email notifications to myself
+        https://bugs.webkit.org/show_bug.cgi?id=215815
+
+        Reviewed by Jonathan Bedard.
+
+        * BuildSlaveSupport/ews-build/send_email.py:
+        (send_email_to_patch_author): Send a copy of email notification to myself.
+        * BuildSlaveSupport/ews-build/master.cfg: Stop receiveing old style email notifications for build failures.
+
 2020-08-27  Jonathan Bedard  <[email protected]>
 
         [webkitscmpy] Initial commit
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to