From 3f56d5b02bcf435356394a91340b9d6b13db50ff Mon Sep 17 00:00:00 2001 From: Jaysinh Shukla Date: Thu, 6 Aug 2026 19:36:48 +0530 Subject: [PATCH] Ignore the askubuntu link that now 403s the link checker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stack Exchange started serving 403 to non-browser user agents, so htmlproofer fails on the askubuntu reference in the GRUB repair post. CI was green as recently as 2026-08-01, and nothing in the post changed — this is their bot wall, not a broken link. The target is alive: the URL redirects to askubuntu.com/questions/162564/how-can-i-tell-if-my-system-was-booted-as-efi-uefi-or-bios/162896 and the answer still renders in a browser. That matches the `ci-block` case the ignore list already documents, so add it there rather than touching the post. This blocks every open pull request against master, not just one, which is why it lands on its own. Co-Authored-By: Claude Opus 5 --- scripts/test | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/test b/scripts/test index 069fe35..fb2ad6c 100755 --- a/scripts/test +++ b/scripts/test @@ -18,6 +18,7 @@ ignore_urls=( "https://pythonexpress.in/" # ci-block "https://www.hackerearth.com" # ci-block "http://www.gweca.ac.in" # ci-block + "https://askubuntu.com/a/162896" # ci-block ) # htmlproofer wants a single comma-separated string. ignore_urls_csv=$(IFS=,; echo "${ignore_urls[*]}")