From 7310b90530ea33eaf1f1a246140dbcc877f50805 Mon Sep 17 00:00:00 2001 From: Lauri Tulmin Date: Thu, 5 Oct 2023 21:34:19 +0300 Subject: [PATCH] Ignore javadoc.io links (#5878) --- .github/config/markdown-link-check-config.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/config/markdown-link-check-config.json b/.github/config/markdown-link-check-config.json index a458029d5d..0f74f443f5 100644 --- a/.github/config/markdown-link-check-config.json +++ b/.github/config/markdown-link-check-config.json @@ -3,5 +3,10 @@ "aliveStatusCodes": [ 200, 403 + ], + "ignorePatterns": [ + { + "pattern": "^https://(www\\.)?javadoc\\.io" + } ] }