From e3d421997a2f6526351a0f889b05f185781575b9 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 3 Apr 2024 06:58:27 -0500 Subject: [PATCH] Skip github usernames in link check (#226) --- .github/actions/check-links/check_links.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/check-links/check_links.py b/.github/actions/check-links/check_links.py index 8714ea5..db8d944 100644 --- a/.github/actions/check-links/check_links.py +++ b/.github/actions/check-links/check_links.py @@ -35,6 +35,7 @@ def check_links(ignore_glob: list[str], ignore_links: list[str], links_expire: s *list(ignore_links), "https://github.com/.*/(pull|issues)/.*", "https://github.com/search?", + "https://github.com/[^/]*$", "http://localhost.*", # https://github.com/github/feedback/discussions/14773 "https://docs.github.com/.*",