From 6a4146eb4c837eea1808b1496894b6b26c8cbdbd Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 3 Oct 2021 22:41:30 +0100 Subject: [PATCH] :building_construction: Ignore 429 status codes in link-checker action --- .github/workflows/docs-link-checker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-link-checker.yml b/.github/workflows/docs-link-checker.yml index 023bc5a9..527b5af9 100644 --- a/.github/workflows/docs-link-checker.yml +++ b/.github/workflows/docs-link-checker.yml @@ -4,7 +4,7 @@ on: repository_dispatch: workflow_dispatch: schedule: - - cron: '0 1 * * 0' # At 01:00 on Sunday. + - cron: '0 1 1 * *' # Run monthly jobs: link-checker: runs-on: ubuntu-latest @@ -14,7 +14,7 @@ jobs: - name: Check for Broken Links uses: lycheeverse/lychee-action@v1.0.8 with: - args: --verbose --no-progress **/*.md **/*.html + args: --verbose -a 200,302,304,429 --no-progress **/*.md **/*.html env: GITHUB_TOKEN: ${{secrets.BOT_GITHUB_TOKEN}} LYCHEE_OUT: .github/broken-link-report.md