Skip to content

Link Check

Link Check #77

Workflow file for this run

name: Link Check
on:
pull_request:
branches: [main]
schedule:
# Daily at 06:00 UTC
- cron: "0 6 * * *"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
links:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Check links
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2
with:
args: >-
--verbose
--no-progress
"**/*.md"
fail: true
lycheeVersion: "v0.23.0"
- name: Upload report
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: lychee-report
path: ./lychee/out.md