Skip link check for goreportcard.com (#3805)

It goes down relatively often, causing flaky CI.
This commit is contained in:
Zach Wasserman 2022-01-19 17:56:01 -08:00 committed by GitHub
parent 4a70cd69fa
commit b9696f67e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,38 +1,41 @@
{
"ignorePatterns": [
{
"pattern": "localhost"
},
{
"pattern": "osquery.io/downloads"
},
{
"pattern": "fleet.acme.org"
},
{
"pattern": "fleet.corp.example.com"
},
{
"pattern": "fleet.example.com"
},
{
"pattern": "/server/datastore/mysql/migrations/"
},
{
"pattern": "linkedin.com/company/fleetdm"
},
{
"pattern": "github.com/fleetdm/confidential"
},
{
"pattern": "osquery.io/schema"
},
{
"pattern": "github.com/issues"
}
],
"retryOn429": true,
"retryCount": 2,
"fallbackRetryDelay": "2s",
"aliveStatusCodes": [200, 206, 999]
"ignorePatterns": [
{
"pattern": "localhost"
},
{
"pattern": "osquery.io/downloads"
},
{
"pattern": "fleet.acme.org"
},
{
"pattern": "fleet.corp.example.com"
},
{
"pattern": "fleet.example.com"
},
{
"pattern": "/server/datastore/mysql/migrations/"
},
{
"pattern": "linkedin.com/company/fleetdm"
},
{
"pattern": "github.com/fleetdm/confidential"
},
{
"pattern": "osquery.io/schema"
},
{
"pattern": "github.com/issues"
},
{
"pattern": "goreportcard.com"
}
],
"retryOn429": true,
"retryCount": 2,
"fallbackRetryDelay": "2s",
"aliveStatusCodes": [200, 206, 999]
}