Skip to content

feat(hooks): CI annotations and SARIF upload for scanner findings #1893

feat(hooks): CI annotations and SARIF upload for scanner findings

feat(hooks): CI annotations and SARIF upload for scanner findings #1893

Workflow file for this run

name: Link Check
on:
pull_request:
paths:
- '**.md'
- '!website/**'
- 'lychee.toml'
push:
branches: [main]
paths:
- '**.md'
- '!website/**'
- 'lychee.toml'
workflow_dispatch:
jobs:
link-check:
name: Check Markdown Links
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout Code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Check links with lychee
uses: lycheeverse/lychee-action@v2
with:
args: --config lychee.toml --root-dir ${{ github.workspace }} '**/*.md'
fail: true
jobSummary: true
token: ${{ secrets.GITHUB_TOKEN }}