blob: 961c593d3840560ab0c1b56c0c50baf00c10ca5b [file] [log] [blame]
Yang Guofbdd3f32019-10-28 15:21:43 +01001# Copyright (c) 2019 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# Watchlist Rules
6# Refer: https://chromium.googlesource.com/chromium/src/+/master/docs/infra/watchlists.md
7
8# IMPORTANT: The regular expression filepath is tested against each path using
9# re.search, so it is not usually necessary to add .*.
10
11{
12 'WATCHLIST_DEFINITIONS': {
13 'all': {
14 'filepath': '.',
15 },
Yang Guo805eb482019-10-29 09:36:44 +010016 'chromedriver': {
17 'filepath': 'front_end/emulated_devices/module.json',
18 },
Connor Clark2d21a8f2020-12-01 16:02:02 +000019 'lighthouse': {
20 'filepath': '[Ll]ighthouse',
21 },
Tim van der Lippe03e268e2019-11-27 11:50:35 +000022 'third_party': {
23 'filepath': 'front_end/third_party/',
24 },
Yang Guofbdd3f32019-10-28 15:21:43 +010025 },
26
27 'WATCHLISTS': {
28 'all': ['devtools-reviews+devtools@chromium.org'],
Yang Guo805eb482019-10-29 09:36:44 +010029 'chromedriver': ['johnchen+watch@chromium.org'],
Connor Clark2d21a8f2020-12-01 16:02:02 +000030 'lighthouse': ['lighthouse-eng+devtools-cl@google.com'],
Tim van der Lippe03e268e2019-11-27 11:50:35 +000031 'third_party': ['devtools-reviews+third_party@chromium.org'],
Yang Guofbdd3f32019-10-28 15:21:43 +010032 },
33}