From 802a0d080a9f293970cfd687b99f560462e2d3ef Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Wed, 28 Jan 2026 18:02:37 +0300 Subject: [PATCH] fix: accept 503 status and exclude temporarily down use.ink URL - Add 503 to accepted status codes for temporarily unavailable external sites - Exclude use.ink migration guide URL (currently returning 503) --- .config/lychee.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/lychee.toml b/.config/lychee.toml index 169999a8..7a22fd2e 100644 --- a/.config/lychee.toml +++ b/.config/lychee.toml @@ -18,6 +18,8 @@ accept = [ "200", # Rate limited - GitHub likes to throw this. "429", + # Service temporarily unavailable + "503", ] exclude_path = ["./prdoc", "./target"] @@ -119,4 +121,6 @@ exclude = [ "https://github.com/pezkuwichain/pezkuwi-sdk/tree/[a-f0-9]+/.*", # Migrated bizinikiwi references "https://github.com/pezkuwichain/bizinikiwi.*", + # External site temporarily down (503) + "https://use.ink/migrate-ink-contracts-to-polkadot-frame-parachain/", ]