From 00e1f54fc1391d25b1cffa2bfb3dccf2b028a6fc Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Tue, 12 Apr 2022 01:12:33 -0700 Subject: [PATCH] Fix sporadic markdown link check failures (#2486) --- .markdown_link_check_config.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.markdown_link_check_config.json b/.markdown_link_check_config.json index 69611efd9..96d7455c2 100644 --- a/.markdown_link_check_config.json +++ b/.markdown_link_check_config.json @@ -1,7 +1,12 @@ { "ignorePatterns": [ - { - "pattern": "^https://github\\.com" - } + { + "pattern": "^https://github\\.com/open-telemetry/opentelemetry-specification/(issues|pull)" + } + ], + "retryOn429": true, + "aliveStatusCodes": [ + 200, + 403 ] }