From 0440c7494e72c1666af1b467005632708bdb99e0 Mon Sep 17 00:00:00 2001 From: David Konigsberg <72822263+davidkonigsberg@users.noreply.github.com> Date: Tue, 9 Sep 2025 07:19:54 -0400 Subject: [PATCH 1/2] ignore example url --- .github/workflows/check-links.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index 94f745eab..c867d2fc8 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -19,7 +19,7 @@ jobs: - name: Install link checker run: pip install linkchecker - name: Create config - run: echo -e "[csv]\nseparator=,\n[filtering]\nignore=\n\texample.com\n\tus.i.posthog.com\n\tdocs.stack-auth.com\n\t/_vercel/(speed-)?insights/\n\tc.vialoops.com/CL0\n[output]\nignoreerrors=\n ^http ^403 Forbidden" > lcconfig + run: echo -e "[csv]\nseparator=,\n[filtering]\nignore=\n\texample.com\n\tus.i.posthog.com\n\tdocs.stack-auth.com\n\tgithub.com/owner/repo\n\t/_vercel/(speed-)?insights/\n\tc.vialoops.com/CL0\n[output]\nignoreerrors=\n ^http ^403 Forbidden" > lcconfig - name: Check ${{ matrix.site.name }} Links run: | set +e From 97de4be365fe60aa76f8bf2a87ab7d6072d59200 Mon Sep 17 00:00:00 2001 From: David Konigsberg <72822263+davidkonigsberg@users.noreply.github.com> Date: Tue, 9 Sep 2025 07:50:41 -0400 Subject: [PATCH 2/2] run more frequently --- .github/workflows/check-links.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index c867d2fc8..e575360c7 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -1,9 +1,9 @@ name: Check Links on: - # Run monday mornings + # Run M/W/F mornings schedule: - - cron: '0 10 * * MON' + - cron: '0 10 * * 1,3,5' workflow_dispatch: jobs: check-links: