From 412a4ae18a04d39f8afd7bd72784b599ab365a06 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 18 May 2026 12:55:47 +0200 Subject: [PATCH] ci: skip external links in broken link check External link checks cause flaky CI failures unrelated to PR changes. Only check internal links which are deterministic and catch real issues. Change-Id: I6ac9560a0f3e357c490eb119fc146ba05ad91759 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a2abdcc404..96fb062db7 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "format": "biome format --write .", "format:check": "biome format src integrations plugins scripts", "check": "astro check && eslint . && biome check .", - "check:links": "linkinator dist/ --recurse --retry-errors --retry-errors-count 3 --timeout 30000 --concurrency 25 --verbosity error --skip 'github.com/.*/edit/' --skip 'https://docs.mergify.com' --skip 'https://slack.mergify.com'" + "check:links": "linkinator dist/ --recurse --concurrency 25 --verbosity error --skip 'https?://'" }, "devDependencies": { "@actions/core": "^3.0.1",