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
This commit is contained in:
François 2022-04-24 18:57:20 +00:00
parent 46acb7753c
commit dd57a94155

View file

@ -3,6 +3,9 @@
{
"pattern": "^https?://github\\.com/"
},
{
"pattern": "^https?://docs\\.github\\.com/"
},
{
"pattern": "^https?://reddit\\.com/"
}