From d4e674cccdd67b58ac92fbd8a5401e54c2d90aa1 Mon Sep 17 00:00:00 2001 From: Simon Pasquier Date: Thu, 20 Nov 2025 15:40:11 +0100 Subject: [PATCH] Skip medium.com links in mdox configuration Signed-off-by: Simon Pasquier --- .mdox.validate.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.mdox.validate.yaml b/.mdox.validate.yaml index e8ad90e0b..442e04b17 100644 --- a/.mdox.validate.yaml +++ b/.mdox.validate.yaml @@ -46,6 +46,9 @@ validators: # Ignore all istio.io URLs because of http request timeout. - regex: 'istio.io' type: ignore + # Medium rejects bot's requests. + - regex: 'medium.com' + type: ignore # Use the githubPullsIssues validator to avoid rate-limiting. - regex: '(^http[s]?:\/\/)(www\.)?(github\.com\/)prometheus-operator\/prometheus-operator(\/pull\/|\/issues\/)' type: githubPullsIssues