Skip to content

Commit

Permalink
do not check links on docs.github.com (#4578)
Browse files Browse the repository at this point in the history
# 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
  • Loading branch information
mockersf committed Apr 24, 2022
1 parent 46acb77 commit dd57a94
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/linters/markdown-link-check.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
{
"pattern": "^https?://github\\.com/"
},
{
"pattern": "^https?://docs\\.github\\.com/"
},
{
"pattern": "^https?://reddit\\.com/"
}
Expand Down

0 comments on commit dd57a94

Please sign in to comment.