Skip to content

docs: add curated release notes for v0.4.0 #225

docs: add curated release notes for v0.4.0

docs: add curated release notes for v0.4.0 #225

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@b09bb98e06d4d774595224525879c09bc6e98c40 # v2.20.1
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Run lychee
uses: lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8 # v2
with:
args: --config lychee.toml '**/*.md'
fail: true