From e8c4ccde5318616f2f6b84594ae36dc3effe0aa9 Mon Sep 17 00:00:00 2001 From: aakash Date: Thu, 13 Nov 2025 11:28:01 -0800 Subject: [PATCH] Configure lychee to accept 503 status codes for intermittently unavailable services --- .github/workflows/link-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index 8da5ea4..ee019c7 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -14,6 +14,6 @@ jobs: - uses: actions/checkout@v4 - uses: lycheeverse/lychee-action@v2 with: - args: --no-progress --insecure --user-agent 'curl/7.68.0' README.md docs/ apps/ examples/ benchmarks/ + args: --no-progress --insecure --user-agent 'curl/7.68.0' --accept 503 README.md docs/ apps/ examples/ benchmarks/ env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}