fix: exclude github.com from lychee link checks (#6434)

GitHub URLs cause persistent HTTP/2 protocol errors when checked
from GitHub Actions runners, failing the CI with 27 false-positive
broken link errors. These are first-party URLs we control and are
not actually broken.
This commit is contained in:
Marius
2026-02-27 10:29:42 +01:00
committed by GitHub
parent 1e04fbff55
commit e99668d31e
+3 -1
View File
@@ -25,5 +25,7 @@ exclude = [
'^https?://(cloud|console)\.google\.ai',
'https://opencode.ai/pages/config',
'^localhost:3000/',
'https://tbench.ai/'
'https://tbench.ai/',
# GitHub URLs cause persistent HTTP/2 protocol errors when checked from GitHub Actions runners
'^https?://github\.com/',
]