From 9605ceba09332c3159a25519c802d1d1dde25c6e Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Mon, 11 Jan 2021 13:50:16 -0500 Subject: GitHub action markdown link check update (#10474) * Update github-action-markdown-link-check * Make pattern stricter * Ignore docs.stackpulse.io (400) It requires you to be logged in... --- .mlc_config.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to '.mlc_config.json') diff --git a/.mlc_config.json b/.mlc_config.json index ccdb194413..8164bc4f81 100644 --- a/.mlc_config.json +++ b/.mlc_config.json @@ -1,7 +1,10 @@ { "ignorePatterns": [ { - "pattern": "^https:\/\/pi-hole.net" + "pattern": "^https:\/\/pi-hole\.net\b" + }, + { + "pattern": "^https:\/\/docs\.stackpulse\.io\b" } ], "replacementPatterns": [ @@ -9,5 +12,9 @@ "pattern": "^/", "replacement": "/github/workspace/" } + ], + "aliveStatusCodes": [ + 200, + 429 ] } -- cgit v1.2.3