Fix markdown documentation links (#35)

- Update/remove broken links
- Add appropriate ignore rules for example URLs and osquery site
This commit is contained in:
Zach Wasserman
2020-11-12 19:06:06 -08:00
committed by GitHub
parent ebd355c52c
commit 138329c371
7 changed files with 22 additions and 5 deletions
+3
View File
@@ -8,3 +8,6 @@ jobs:
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
config-file: .github/workflows/markdown-link-check-config.json
@@ -0,0 +1,14 @@
{
"ignorePatterns": [
{
"localhost": "localhost",
"osquery-downloads": "osquery.io/downloads",
"fleet.acme.org": "fleet.acme.org",
"fleet.corp.example.com": "fleet.corp.example.com"
}
],
"retryOn429": true,
"retryCount": 2,
"fallbackRetryDelay": "2s",
"aliveStatusCodes": [200, 206]
}