From 3b9784a263c3dacd3446f642e9de3f13952bd5d3 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Wed, 25 Feb 2026 15:12:57 +0900 Subject: [PATCH] mlc_config.json: add retry and accept 502 as alive status GitHub sometimes returns transient 502 errors for valid URLs, causing false positives in CI markdown link checks. Co-authored-by: Claude --- .github/linters/mlc_config.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/linters/mlc_config.json b/.github/linters/mlc_config.json index d58d01ec0..25acbbb12 100644 --- a/.github/linters/mlc_config.json +++ b/.github/linters/mlc_config.json @@ -1,4 +1,11 @@ { + "retryOn429": true, + "retryCount": 3, + "aliveStatusCodes": [ + 200, + 206, + 502 + ], "ignorePatterns": [ { "pattern": "^https://github.com/mruby/mruby/commit/"