From dd57a94155722fe50986744bfd6aa6ad09bf5bd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Sun, 24 Apr 2022 18:57:20 +0000 Subject: [PATCH] do not check links on docs.github.com (#4578) # Objective - related to #4575, but not a complete fix - links to GitHub.com can't be checked from inside a GitHub Actions as GitHub is protecting itself from being flooded by an action execution - it seems they added that protection to GitHub doc site ## Solution - Ignore links to docs.github.com --- .github/linters/markdown-link-check.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/linters/markdown-link-check.json b/.github/linters/markdown-link-check.json index 67bd0974f2..9e2a95efc3 100644 --- a/.github/linters/markdown-link-check.json +++ b/.github/linters/markdown-link-check.json @@ -3,6 +3,9 @@ { "pattern": "^https?://github\\.com/" }, + { + "pattern": "^https?://docs\\.github\\.com/" + }, { "pattern": "^https?://reddit\\.com/" }