From 06504b84d628a49e52cc73474b6ea6f91e5443d2 Mon Sep 17 00:00:00 2001 From: Daniel Farrell Date: Fri, 25 Jun 2021 16:05:41 -0400 Subject: [PATCH] Ignore charts repo URL in MD link checking Somehow the GitHub Pages URL we use to publish and install the charts works to install the charts in CI but also fails with a 404 in CI. The URL is successfully used by Shipyard here: https://github.com/submariner-io/shipyard/blob/ 33dc2ffdadf6e520a2101368f7f7456c031bace0/scripts/shared/lib/ deploy_helm#L14 Signed-off-by: Daniel Farrell --- .markdownlinkcheck.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.markdownlinkcheck.json b/.markdownlinkcheck.json index 6d70d33..9bb0b98 100644 --- a/.markdownlinkcheck.json +++ b/.markdownlinkcheck.json @@ -5,6 +5,9 @@ }, { "pattern": "^http://localhost:" + }, + { + "pattern": "^https://submariner-io.github.io/submariner-charts/charts" } ] }