From 717943e94afe78084b8b090de6006f36651975a7 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Mon, 13 Apr 2026 17:01:07 +0200 Subject: [PATCH] ci: add markdown-link-check ignore patterns Ignore - https://musl.libc.org/ - https://www.etalabs.net/ Update markdown-link-check to 3.14.2 --- .github/workflows/markdown-link-check.yml | 2 +- markdown_link_check_config.json | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml index 33834765e..75e0da26d 100644 --- a/.github/workflows/markdown-link-check.yml +++ b/.github/workflows/markdown-link-check.yml @@ -18,6 +18,6 @@ jobs: with: node-version: 'lts/*' - name: Install markdown-link-check - run: npm i -g markdown-link-check@3.14.1 + run: npm i -g markdown-link-check@3.14.2 - name: Run markdown-link-check on MD files run: find . -name "*.md" | xargs -n 1 markdown-link-check -c markdown_link_check_config.json -q diff --git a/markdown_link_check_config.json b/markdown_link_check_config.json index ee9cafc89..9448b3535 100644 --- a/markdown_link_check_config.json +++ b/markdown_link_check_config.json @@ -8,6 +8,12 @@ }, { "pattern": "^https://news\\.ycombinator\\.com/" + }, + { + "pattern": "^https://musl\\.libc\\.org/" + }, + { + "pattern": "^https://www\\.etalabs\\.net/" } ] }