|
21 | 21 | ignore_emails = { |
22 | 22 | '[email protected]', # Don't expect people to CC LKML on everything |
23 | 23 | '[email protected]', # For new files NIPA will get marked as committer |
24 | | - |
| 24 | + |
| 25 | + |
| 26 | + |
| 27 | + |
| 28 | + |
| 29 | + |
| 30 | + |
| 31 | + |
| 32 | + |
25 | 33 | } |
26 | 34 |
|
27 | 35 | # Maintainers who don't CC their co-employees |
28 | 36 | maintainers = { |
29 | 37 | '[email protected]': [ '@broadcom.com'], |
30 | 38 | '[email protected]': [ '@huawei.com', '@hisilicon.com'], |
31 | | - '[email protected]': [ '@intel.com', '@lists.osuosl.org'], |
| 39 | + '[email protected]': [ '@intel.com', '@linux.intel.com', '@lists.osuosl.org'], |
32 | 40 | |
33 | 41 | '@nvidia.com', '@mellanox.com', '[email protected]', '[email protected]' |
34 | 42 | ] |
|
40 | 48 | |
41 | 49 |
|
42 | 50 | local_map = [ "Vladimir Oltean <[email protected]> <[email protected]>", |
| 51 | + |
| 52 | + |
| 53 | + |
| 54 | + |
| 55 | + |
| 56 | + |
| 57 | + |
| 58 | + |
43 | 59 | |
44 | 60 |
|
45 | 61 | # |
@@ -175,7 +191,7 @@ def cc_maintainers(tree, thing, result_dir) -> Tuple[int, str, str]: |
175 | 191 | ignored = set() |
176 | 192 | with tempfile.NamedTemporaryFile() as fp: |
177 | 193 | patch.write_out(fp) |
178 | | - command = ['./scripts/get_maintainer.pl', '--git-min-percent', '25', '--', fp.name] |
| 194 | + command = ['./scripts/get_maintainer.pl', '--git-min-percent', '35', '--', fp.name] |
179 | 195 | with subprocess.Popen(command, cwd=tree.path, stdout=subprocess.PIPE) as p: |
180 | 196 | line = p.stdout.readline().decode('utf8', 'replace') |
181 | 197 | while line: |
|
0 commit comments