Files
wehub-resource-sync 9201ef759e
Harness Compat / harness compat (push) Failing after 0s
CI / test on 3.12 (standard) (push) Has been cancelled
CI / test on 3.13 (standard) (push) Has been cancelled
CI / test on 3.14 (standard) (push) Has been cancelled
CI / test on 3.10 (all-extras) (push) Has been cancelled
CI / test on 3.11 (all-extras) (push) Has been cancelled
CI / test on 3.12 (all-extras) (push) Has been cancelled
CI / test on 3.14 (pydantic-ai-slim) (push) Has been cancelled
CI / test on 3.10 (pydantic-evals) (push) Has been cancelled
CI / test on 3.11 (pydantic-evals) (push) Has been cancelled
CI / test on 3.12 (pydantic-evals) (push) Has been cancelled
CI / deploy-docs-preview (push) Has been cancelled
CI / build release artifacts (push) Has been cancelled
CI / publish to PyPI (push) Has been cancelled
CI / Send tweet (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / mypy (push) Has been cancelled
CI / docs (push) Has been cancelled
CI / test on 3.10 (standard) (push) Has been cancelled
CI / test on 3.11 (standard) (push) Has been cancelled
CI / test on 3.13 (all-extras) (push) Has been cancelled
CI / test on 3.14 (all-extras) (push) Has been cancelled
CI / test on 3.10 (pydantic-ai-slim) (push) Has been cancelled
CI / test on 3.11 (pydantic-ai-slim) (push) Has been cancelled
CI / test on 3.12 (pydantic-ai-slim) (push) Has been cancelled
CI / test on 3.13 (pydantic-ai-slim) (push) Has been cancelled
CI / test on 3.13 (pydantic-evals) (push) Has been cancelled
CI / test on 3.14 (pydantic-evals) (push) Has been cancelled
CI / test on 3.10 (lowest-versions) (push) Has been cancelled
CI / test on 3.11 (lowest-versions) (push) Has been cancelled
CI / test on 3.12 (lowest-versions) (push) Has been cancelled
CI / test on 3.13 (lowest-versions) (push) Has been cancelled
CI / test on 3.14 (lowest-versions) (push) Has been cancelled
CI / test examples on 3.11 (push) Has been cancelled
CI / test examples on 3.12 (push) Has been cancelled
CI / test examples on 3.13 (push) Has been cancelled
CI / test examples on 3.14 (push) Has been cancelled
CI / coverage (push) Has been cancelled
CI / check (push) Has been cancelled
CI / deploy-docs (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:27:52 +08:00

34 lines
1.1 KiB
TOML

# Configuration for the scheduled docs link check (see link-check.yml).
# Tuned to avoid false positives from sites that block bots or rate-limit, so the
# issue it opens only lists genuinely broken links.
# Some sites return 403/429 to non-browser clients even though the link is fine.
accept = ["200..=299", "403", "429"]
# Browser-like UA reduces bot-blocking 403s.
user_agent = "Mozilla/5.0 (compatible; lychee link checker)"
max_redirects = 10
max_retries = 3
retry_wait_time = 2
timeout = 30
# Don't check localhost example URLs or form-submission endpoints.
exclude_all_private = true
exclude_loopback = true
# Relative doc links are resolved by mkdocs, not as filesystem paths; skip the
# `file://` links lychee derives from them.
scheme = ["https", "http"]
# Login-gated or bot-blocking hosts that return non-2xx to automated checks even
# though the links are valid in a browser; not worth failing the run over.
exclude = [
"platform\\.openai\\.com",
"openai\\.com",
"console\\.mistral\\.ai",
"dash\\.voyageai\\.com",
"spec\\.modelcontextprotocol\\.io",
"customerioforms\\.com",
]