From 9a0d4035d89b844b9537e2f7ad70486398ba6719 Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Tue, 19 Aug 2025 10:57:24 -0500 Subject: [PATCH] config(link-checker): exclude Docker Hub URLs Add exclusion pattern for hub.docker.com to both production and default link-checker configurations. Docker Hub often implements rate limiting and bot detection that causes false positive link validation failures in CI environments. --- .ci/link-checker/default.lycherc.toml | 3 +++ .ci/link-checker/production.lycherc.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.ci/link-checker/default.lycherc.toml b/.ci/link-checker/default.lycherc.toml index 259efd76a..f769afc36 100644 --- a/.ci/link-checker/default.lycherc.toml +++ b/.ci/link-checker/default.lycherc.toml @@ -55,6 +55,9 @@ exclude = [ "^https?://stackoverflow\\.com", "^https?://.*\\.stackoverflow\\.com", + # Docker Hub URLs (rate limiting and bot detection) + "^https?://hub\\.docker\\.com", + # Common documentation placeholders "YOUR_.*", "REPLACE_.*", diff --git a/.ci/link-checker/production.lycherc.toml b/.ci/link-checker/production.lycherc.toml index f8410208c..37f692e47 100644 --- a/.ci/link-checker/production.lycherc.toml +++ b/.ci/link-checker/production.lycherc.toml @@ -63,6 +63,9 @@ exclude = [ "^https?://stackoverflow\\.com", "^https?://.*\\.stackoverflow\\.com", + # Docker Hub URLs (rate limiting and bot detection) + "^https?://hub\\.docker\\.com", + # InfluxData support URLs (certificate/SSL issues in CI) "^https?://support\\.influxdata\\.com",