From 050e1bfaf2241429c9578ea07dae4215dbbc65e6 Mon Sep 17 00:00:00 2001 From: Branimir Georgiev Date: Sat, 25 Apr 2026 15:40:03 +0300 Subject: [PATCH] fix: exclude symlink directory from lychee to prevent recursive scan The dist/tutorial-git symlink caused lychee to scan HTML files twice, hanging the CI job. Co-Authored-By: Claude Opus 4.6 (1M context) --- lychee.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lychee.toml b/lychee.toml index 8f3d6c5..1b082c1 100644 --- a/lychee.toml +++ b/lychee.toml @@ -7,6 +7,9 @@ exclude = [ "^http://", ] +# Skip the symlink directory to prevent recursive scanning +exclude_path = ["astro-site/dist/tutorial-git"] + # Accept 200 and 204 accept = [200, 204]