From ddd83db546fc8e5f50374bde5ea2c8fff29f80ac Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Fri, 31 Jul 2026 16:16:09 -0400 Subject: [PATCH] Docs: exclude stackoverflow.com from lychee link check Stack Overflow returns 403 to automated requests, so the CUDA-version link in docs/documentation/docker.md fails the docs link check even though it resolves fine in a browser. Same class of exclusion already present for the Microsoft Store, VS Code, and OLCF Summit pages. --- .lychee.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.lychee.toml b/.lychee.toml index 15af8f386..54db9a7e7 100644 --- a/.lychee.toml +++ b/.lychee.toml @@ -31,4 +31,5 @@ exclude = [ "https://www\\.olcf\\.ornl\\.gov/summit", # Returns 503 to automated requests "https://apps\\.microsoft\\.com/store/detail/", # Microsoft Store detail pages return 403 to automated requests "https://code\\.visualstudio\\.com/?$", # Root page returns 403 to automated requests + "https://stackoverflow\\.com", # Returns 403 to automated requests ]