From aca58641eecf401580ca9475e0103eb04bde917b Mon Sep 17 00:00:00 2001 From: Saravanan D Date: Tue, 12 May 2026 18:59:18 -0700 Subject: [PATCH] ci: Exclude Slack invite URLs from link checker Slack's join.* endpoints reject automated GETs and return 403, so lychee was failing the link availability check on any PR that touched README.md Add the join.slack.com/t/ prefix to the .lychee.toml exclude list Signed-off-by: Saravanan D --- .lychee.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.lychee.toml b/.lychee.toml index 849c6d19b..54cd92f57 100644 --- a/.lychee.toml +++ b/.lychee.toml @@ -21,6 +21,8 @@ exclude = [ '^https://developer\.arm\.com', # Ignore internal/unsupported protocols seen in logs '^tcp://192\.168\.1\.10', + # Slack invite endpoints reject automated GETs and return 403. + '^https://join\.slack\.com/t/', ] # Exclude loopback addresses