From 21b9806cad62c5928b09faa03442b08de6ec3a3a Mon Sep 17 00:00:00 2001 From: Julian Stecklina Date: Tue, 8 Apr 2025 17:42:04 +0200 Subject: [PATCH] ci: Exclude osdev.org from link check OSDev has cranked up its bot protection. The following link works for me locally after clicking the "I'm a human" button. I guess the CI fails this check... Without this exception the CI fails the link check stage: * [403] [https://wiki.osdev.org/IOAPIC](https://wiki.osdev.org/IOAPIC) | Network error: Forbidden Signed-off-by: Julian Stecklina --- .lychee.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.lychee.toml b/.lychee.toml index 922d29b42..9eb8f9fdf 100644 --- a/.lychee.toml +++ b/.lychee.toml @@ -11,6 +11,9 @@ exclude = [ # GitHub user smibarber referenced in `CREDITS.md` no longer exist '^https://github.com/smibarber', + + # OSDev has added bot protection and accesses my result in 403 Forbidden. + '^https://wiki.osdev.org', ] max_retries = 3