Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/lychee.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Link Checker

on:
schedule:
# Run every Monday at 9:00 AM UTC
- cron: '0 9 * * 1'
workflow_dispatch:

permissions:
issues: write
contents: read

env:
# Use GITHUB_TOKEN to avoid rate limiting
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
link-checker:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout sources
uses: actions/checkout@v5
with:
submodules: true

- name: Check links and create issues
uses: lycheeverse/lychee-action@v2
with:
args: --config ./lychee.toml --cache-exclude-status 429 '**/README.md' './docs/**/*.md' './docs/**/*.mdx' './docs/**/*.html' './docs/**/*.json'
fail: false
issue-on-error: true
issue-title: "Link Checker found broken links"
issue-body: |
The automated link checker found broken links in the repository.

Please review and fix the broken links listed below:

$LYCHEE_REPORT

# Avoid duplicate issues by closing previous ones
close-previous-issues: true
Comment thread
refcell marked this conversation as resolved.
12 changes: 1 addition & 11 deletions .github/workflows/rust_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -253,14 +253,4 @@ jobs:
run: |
zepter

lychee:
runs-on: ubuntu-latest
env:
# Use GITHUB_TOKEN to avoid rate limiting
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v5
- uses: lycheeverse/lychee-action@v2
with:
args: --config ./lychee.toml --cache-exclude-status 429 '**/README.md' './docs/**/*.md' './docs/**/*.mdx' './docs/**/*.html' './docs/**/*.com'

Loading