From 2664941cacb7675663e0cb1297b88caa630cbbbb Mon Sep 17 00:00:00 2001 From: Ulli Hafner Date: Sat, 5 Oct 2024 14:39:31 +0200 Subject: [PATCH] Ignore rate-limit errors during Markdown link check. --- .github/check-md-links.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/check-md-links.json diff --git a/.github/check-md-links.json b/.github/check-md-links.json new file mode 100644 index 0000000..ffd3959 --- /dev/null +++ b/.github/check-md-links.json @@ -0,0 +1,11 @@ +{ + "httpHeaders": [ + { + "urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/", "https://classroom.github.com"], + "headers": { + "Accept-Encoding": "zstd, br, gzip, deflate" + } + } + ], + "aliveStatusCodes": [200, 500, 503, 429] +}