Skip to content

chore: remove release notes override (#169) #126

chore: remove release notes override (#169)

chore: remove release notes override (#169) #126

Workflow file for this run

name: Link checker
on:
push:
branches: [main]
paths:
- "**.md"
- "lychee.toml"
- ".github/workflows/links.yml"
pull_request:
paths:
- "**.md"
- "lychee.toml"
- ".github/workflows/links.yml"
schedule:
- cron: "0 6 * * 1"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: links-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
links:
name: Check links
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Harden runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Run lychee
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2
with:
args: --config lychee.toml '**/*.md'
fail: true