Skip to content

✅ Lychee

✅ Lychee #494

Workflow file for this run

---
name: "✅ Lychee"
on:
repository_dispatch: {}
workflow_dispatch: {}
workflow_call: {}
schedule:
- cron: "00 18 * * *"
push:
branches: [main]
paths:
- "**.md"
- "**.mdx"
- "**.html"
pull_request_target:
branches: [main]
paths:
- "**.md"
- "**.mdx"
- "**.html"
jobs:
links-check:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3.3.0
- name: "📤 Restore cache"
id: restore-cache
uses: actions/cache/restore@v3
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-
- name: "📊 Lychee Link Checker"
uses: lycheeverse/lychee-action@c3089c702fbb949e3f7a8122be0c33c017904f9b
with:
args: "--config ./.github/lychee.toml './**/*.md*' './**/*.html'"
format: markdown
output: ./.github/LINKS_REPORT.md
fail: false
jobSummary: true
env:
GITHUB_TOKEN: ${{ github.token }}
- name: "📥 Save cache"
uses: actions/cache/save@v3
if: always()
with:
path: .lycheecache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
- name: "🔖 Create Issue From File"
if: env.lychee_exit_code != 0
uses: peter-evans/create-issue-from-file@v4
with:
title: " 📢 Link Checker Report"
content-filepath: ./.github/LINKS_REPORT.md
labels: maintenance 📈
issue-number: 102