Skip to content

Remove Steve Linden #154

Remove Steve Linden

Remove Steve Linden #154

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@7da8ec1fc4e01b5a12062ac6c589c10a4ce70d67 # v2.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: --verbose --no-progress './**/*.md' './**/*.html' './**/*.erb' --config config/lychee.toml
fail: true