From e83fbed8dad412484fc3859cda7f8e0df4b492e7 Mon Sep 17 00:00:00 2001 From: Janosh Riebesell Date: Tue, 1 Aug 2023 14:51:46 -0700 Subject: [PATCH] treat http status code 0 and 403 as alive in link check --- .github/workflows/link-check-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-check-config.json b/.github/workflows/link-check-config.json index 496bbb7..1303497 100644 --- a/.github/workflows/link-check-config.json +++ b/.github/workflows/link-check-config.json @@ -1,3 +1,3 @@ { - "aliveStatusCodes": [200, 429, 500, 503] + "aliveStatusCodes": [0, 200, 403, 429, 500, 503] }