Skip to content

Commit e08da7c

Browse files
committed
fix(ci): satisfy CodeQL regex anchors
1 parent 6d56cfc commit e08da7c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/classify_ci_noise.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ class NoiseRule:
8484
NoiseRule(
8585
"chrome-devtools-update-advisory",
8686
re.compile(
87-
r"^Update available: \d+(?:\.\d+){1,3} -> \d+(?:\.\d+){1,3}$|"
88-
r"^Run `npm install chrome-devtools-mcp@latest` to update\.$"
87+
r"^(?:Update available: \d+(?:\.\d+){1,3} -> \d+(?:\.\d+){1,3}|"
88+
r"Run `npm install chrome-devtools-mcp@latest` to update\.)$"
8989
),
9090
"Chrome DevTools MCP prints a non-blocking package update advisory to stderr.",
9191
),

0 commit comments

Comments
 (0)