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)
This commit is contained in:
2026-01-28 18:02:37 +03:00
parent 3c63bb932b
commit 802a0d080a
+4
View File
@@ -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/",
]