From 666509e6346daebe6c69c4b9dc8316b57d885f83 Mon Sep 17 00:00:00 2001 From: eashaw Date: Mon, 21 Mar 2022 17:21:12 -0500 Subject: [PATCH] Ignore FleetDM GitHub project URLs when checking Markdown links (#4712) * Add GitHub projects to link check ignorePatterns * update pattern to exclude private GitHub projects --- .github/workflows/markdown-link-check-config.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/markdown-link-check-config.json b/.github/workflows/markdown-link-check-config.json index ead02b1548..8108fafa3f 100644 --- a/.github/workflows/markdown-link-check-config.json +++ b/.github/workflows/markdown-link-check-config.json @@ -41,6 +41,9 @@ }, { "pattern": "angel.co" + }, + { + "pattern": "github.com/orgs/fleetdm/projects/(34|31|30|28|26|23|22|21|19|16|14|13|12|11|9|4|3|1)(\D|$)" } ], "retryOn429": true,