From 3cad34678b6b225d929932d77441927980e644df Mon Sep 17 00:00:00 2001 From: Daniel Farrell Date: Wed, 11 May 2022 13:42:49 -0400 Subject: [PATCH] Ignore docs.github.com URLs as they always 403 All docs.github.com URLs return 403 Forbidden, although they work. This seems to be a new behavior, as it was working less than a week ago. This happens in CI across submariner-io repos and locally. $ curl -I https://docs.github.com/ HTTP/2 403 Signed-off-by: Daniel Farrell --- .markdownlinkcheck.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.markdownlinkcheck.json b/.markdownlinkcheck.json index 9bb0b98..56e8f80 100644 --- a/.markdownlinkcheck.json +++ b/.markdownlinkcheck.json @@ -1,5 +1,8 @@ { "ignorePatterns": [ + { + "pattern": "^https://docs.github.com" + }, { "pattern": "^https://github.com/\\S+/\\S+/(issues|pull)/[0-9]+" },