blob: 638e1a4800b4ee78d098e97a63f23c57c9ea3f3b [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
Paul Lewis29062222021-07-07 09:56:50 +01006# Refer: https://chromium.googlesource.com/chromium/src/+/main/docs/infra/watchlists.md
Yang Guofbdd3f32019-10-28 15:21:43 +01007
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': {
Tim van der Lippe4fa7c592021-11-17 15:52:58 +000017 'filepath': 'front_end/emulated_devices/',
Yang Guo805eb482019-10-29 09:36:44 +010018 },
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 },
Al Muthanna Athamina7a7ab972023-02-06 10:45:12 +010025 'tests': {
26 'filepath': 'test/',
27 },
Yang Guofbdd3f32019-10-28 15:21:43 +010028 },
29
30 'WATCHLISTS': {
31 'all': ['devtools-reviews+devtools@chromium.org'],
Yang Guo805eb482019-10-29 09:36:44 +010032 'chromedriver': ['johnchen+watch@chromium.org'],
Connor Clark2d21a8f2020-12-01 16:02:02 +000033 'lighthouse': ['lighthouse-eng+devtools-cl@google.com'],
Tim van der Lippe03e268e2019-11-27 11:50:35 +000034 'third_party': ['devtools-reviews+third_party@chromium.org'],
Al Muthanna Athamina7a7ab972023-02-06 10:45:12 +010035 'tests': ['almuthanna+watch@chromium.org'],
Yang Guofbdd3f32019-10-28 15:21:43 +010036 },
37}