Skip to content

docs: readability pass with emoji headers, quick-pick tables, collaps… #24

docs: readability pass with emoji headers, quick-pick tables, collaps…

docs: readability pass with emoji headers, quick-pick tables, collaps… #24

Workflow file for this run

name: Links
on:
push:
branches: [main]
pull_request:
schedule:
- cron: "0 6 * * 1" # Mondays 06:00 UTC
workflow_dispatch:
permissions:
contents: read
issues: write
jobs:
link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check links
id: lychee
uses: lycheeverse/lychee-action@v2
with:
args: >-
--no-progress
--max-concurrency 4
--timeout 30
--max-retries 3
--retry-wait-time 2
--accept '200..=299,403,429'
'./**/*.md'
output: ./lychee/out.md
fail: true
- name: Open an issue on scheduled failure
if: failure() && github.event_name == 'schedule'
uses: peter-evans/create-issue-from-file@v5
with:
title: Broken links detected
content-filepath: ./lychee/out.md
labels: broken-links