From 5fe69e780d9710821eb489e96ec2cf790a2a4fce Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Mon, 25 May 2026 00:01:34 +0200 Subject: [PATCH] fix(ci): extend image link-check ignore pattern to cover subdirectories MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The existing pattern ^/images/[^/]+\.png$ only matched single-level image paths. Blog post images live under /images/blog/ — broaden the pattern to ^/images/ to cover all static image paths regardless of depth. Co-Authored-By: Claude Sonnet 4.6 --- .github/markdown-link-check.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/markdown-link-check.json b/.github/markdown-link-check.json index 2b2a49f..132c004 100644 --- a/.github/markdown-link-check.json +++ b/.github/markdown-link-check.json @@ -27,7 +27,7 @@ "pattern": "^https://pkg.go.dev.*badge" }, { - "pattern": "^/images/[^/]+\\.png$" + "pattern": "^/images/" }, { "pattern": "https://www.contributor-covenant.org/version/2/0/code_of_conduct.html"