Skip to content

Docs Link Check

Docs Link Check #35

Workflow file for this run

name: Docs Link Check
on:
pull_request:
push:
branches:
- main
- "feature/**"
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
links:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Check markdown links
uses: lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 # v2.4.1
with:
args: >-
--glob
--no-progress
--verbose
--exclude-mail
--accept 429
--max-retries 2
--retry-wait-time 2
README.md
CONTRIBUTING.md
AGENTS.md
docs/**/*.md
examples/**/*.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}