Skip to content

Link Check

Link Check #3

Workflow file for this run

name: Link Check
on:
schedule:
# Run every Monday at 06:00 UTC
- cron: "0 6 * * 1"
workflow_dispatch:
permissions:
contents: read
issues: write
jobs:
link-check:
name: Check Links
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Link Checker
uses: lycheeverse/lychee-action@v2
with:
args: >-
--verbose
--no-progress
--accept 200,204,301,302,307,308
--timeout 30
--max-retries 3
--exclude-mail
'**/*.md'
fail: false
- name: Upload Report
if: always()
uses: actions/upload-artifact@v4
with:
name: link-check-report
path: lychee/out.md
retention-days: 14