Skip to content

New runbook documentation #162

New runbook documentation

New runbook documentation #162

Workflow file for this run

---
name: check for broken links
on:
pull_request:
paths:
- "source/**"
schedule:
- cron: '3 7 * * TUE'
permissions: {}
jobs:
check-links:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
id: checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Lychee
id: lychee
uses: lycheeverse/lychee-action@7cd0af4c74a61395d455af97419279d86aafaede # v2.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: --verbose --no-progress './**/*.md' './**/*.html' './**/*.erb' --config config/lychee.toml
fail: true