From c8df9697de579db1686a178766889ec5b31a12ac Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Mon, 27 Nov 2023 17:43:35 -0800 Subject: [PATCH] Ignore man page links in markdown link check config These pass locally but have been failing in CI for a while. Maybe the `linux.die.net` host is blocking GitHub Actions runners? Ignoring this to eliminate the alert fatigue, which prevented me from catching these breakages for a month: - https://github.com/artichoke/docker-artichoke-nightly/pull/187 - https://github.com/artichoke/playground/pull/1105 --- .github/markdown-link-check.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/markdown-link-check.json b/.github/markdown-link-check.json index 3f3487d..136d070 100644 --- a/.github/markdown-link-check.json +++ b/.github/markdown-link-check.json @@ -5,6 +5,9 @@ }, { "pattern": "^https://twitter.com/artichokeruby" + }, + { + "pattern": "https://linux.die.net/man/3/isspace" } ], "replacementPatterns": [],