Skip to content

links

links #994

Workflow file for this run

name: links
on:
pull_request:
schedule:
- cron: "0 12 * * 1"
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v1.8.0
with:
args: --verbose --no-progress -t 5 --exclude-mail --exclude=local.suborbital.network *.md docs/**/*.md
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}