From 2edc2a057bcad9f8a20697bd16f46ab96fa2376d Mon Sep 17 00:00:00 2001 From: Sam Cunliffe Date: Wed, 17 Dec 2025 21:23:41 +0000 Subject: [PATCH] Ignore 'too many request' failures. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f06c5c9..b883e08 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,6 +63,6 @@ jobs: with: # nice to check a few specific root-level markdown files (README.md etc) for valid links, # but the main thing to check is the rendered website (in the `open-source` directory) - args: "--no-progress --verbose --github-token ${{ secrets.GITHUB_TOKEN }} -- README.md CONTRIBUTING.md open-source/" + args: "--accept 200,429 --no-progress --verbose --github-token ${{ secrets.GITHUB_TOKEN }} -- README.md CONTRIBUTING.md open-source/" fail: true jobSummary: true