From b9696f67e69dee9bf97fe2f78da7d9c661394c59 Mon Sep 17 00:00:00 2001 From: Zach Wasserman Date: Wed, 19 Jan 2022 17:56:01 -0800 Subject: [PATCH] Skip link check for goreportcard.com (#3805) It goes down relatively often, causing flaky CI. --- .../workflows/markdown-link-check-config.json | 75 ++++++++++--------- 1 file changed, 39 insertions(+), 36 deletions(-) diff --git a/.github/workflows/markdown-link-check-config.json b/.github/workflows/markdown-link-check-config.json index d8da76dcb6..4246bb9c5d 100644 --- a/.github/workflows/markdown-link-check-config.json +++ b/.github/workflows/markdown-link-check-config.json @@ -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] }