From 83681aa9fa974cdde3e3b7b7be501f6f53cc3fb7 Mon Sep 17 00:00:00 2001 From: Akshay Iyyadurai Balasundaram Date: Thu, 28 May 2026 09:58:46 +0200 Subject: [PATCH] [IGNORE] ignore cert-manager.io links in mdox validation External link validation against cert-manager.io intermittently fails on GitHub Actions runners due to network timeouts (status code 0: context deadline exceeded), blocking PRs unrelated to docs. Add cert-manager.io to the ignore list, consistent with how helm.sh and groups.google.com are already handled. Signed-off-by: Akshay Iyyadurai Balasundaram --- .mdox.validate.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.mdox.validate.yaml b/.mdox.validate.yaml index 56de47e..1fcafd4 100644 --- a/.mdox.validate.yaml +++ b/.mdox.validate.yaml @@ -8,3 +8,5 @@ validators: # intermittent timeouts from CI runners - regex: 'helm\.sh' type: "ignore" + - regex: 'cert-manager\.io' + type: "ignore"