Skip to content

Commit bb1c821

Browse files
author
Brian Vaughn
authored
Fixed localhost URL check
Noticed that it missed 21568 because of a leading "/"
1 parent 7841d06 commit bb1c821

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/devtools_check_repro.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ jobs:
178178
Issues without repros are automatically closed but we will re-open if you update with repro info.
179179
`.trim();
180180
181-
if (url.includes("/localhost")) {
181+
if (url.includes("localhost")) {
182182
closeWithComment(`
183183
${COMMENT_HEADER}
184184

0 commit comments

Comments
 (0)