# 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
28 lines
489 B
JSON
28 lines
489 B
JSON
{
|
|
"ignorePatterns": [
|
|
{
|
|
"pattern": "^https?://github\\.com/"
|
|
},
|
|
{
|
|
"pattern": "^https?://docs\\.github\\.com/"
|
|
},
|
|
{
|
|
"pattern": "^https?://reddit\\.com/"
|
|
}
|
|
],
|
|
"replacementPatterns": [],
|
|
"httpHeaders": [
|
|
{
|
|
"urls": ["https://crates.io"],
|
|
"headers": {
|
|
"Accept": "text/html"
|
|
}
|
|
}
|
|
],
|
|
"timeout": "20s",
|
|
"retryOn429": true,
|
|
"retryCount": 5,
|
|
"fallbackRetryDelay": "30s",
|
|
"aliveStatusCodes": [200, 206]
|
|
}
|