[blinkpy] Stop CC me when automatically filing bugs

The import notifier has been running smoothly for a while and we are
seeing increasing adoption. Hence, it is a good time to save my inbox
from being spammed (filters can't save me as owners may rename or merge
the automatically filed bugs).

Change-Id: I6b8bdd32dbdf08749546aa9e152bd4e4a0dfa9b2
Reviewed-on: https://chromium-review.googlesource.com/c/1470547
Reviewed-by: Quinten Yearsley <qyearsley@chromium.org>
Commit-Queue: Robert Ma <robertma@chromium.org>
Cr-Commit-Position: refs/heads/master@{#631796}
diff --git a/third_party/blink/tools/blinkpy/w3c/import_notifier.py b/third_party/blink/tools/blinkpy/w3c/import_notifier.py
index 11e405a9..87e4f6a0 100644
--- a/third_party/blink/tools/blinkpy/w3c/import_notifier.py
+++ b/third_party/blink/tools/blinkpy/w3c/import_notifier.py
@@ -171,7 +171,7 @@
 
             owners = self.owners_extractor.extract_owners(owners_file)
             # owners may be empty but not None.
-            cc = owners + ['robertma@chromium.org']
+            cc = owners
 
             component = self.owners_extractor.extract_component(owners_file)
             # component could be None.
diff --git a/third_party/blink/tools/blinkpy/w3c/import_notifier_unittest.py b/third_party/blink/tools/blinkpy/w3c/import_notifier_unittest.py
index d4a231b4..6f7c28b 100644
--- a/third_party/blink/tools/blinkpy/w3c/import_notifier_unittest.py
+++ b/third_party/blink/tools/blinkpy/w3c/import_notifier_unittest.py
@@ -187,7 +187,7 @@
         # Only one directory has WPT-NOTIFY enabled.
         self.assertEqual(len(bugs), 1)
         # The formatting of imported commits and new failures are already tested.
-        self.assertEqual(bugs[0].body['cc'], ['foolip@chromium.org', 'robertma@chromium.org'])
+        self.assertEqual(bugs[0].body['cc'], ['foolip@chromium.org'])
         self.assertEqual(bugs[0].body['components'], ['Blink>Infra>Ecosystem'])
         self.assertEqual(bugs[0].body['summary'],
                          '[WPT] New failures introduced in external/wpt/foo by import https://crrev.com/c/12345')