Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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
Expand Down