Links #972
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Links | |
on: | |
repository_dispatch: | |
workflow_dispatch: | |
schedule: | |
# Everyday at 9:00 AM. | |
- cron: "0 9 * * *" | |
jobs: | |
check-links: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Restore lychee cache | |
uses: actions/cache/restore@v4 | |
id: cache-restore | |
with: | |
path: .lycheecache | |
key: cache-lychee-${{ github.sha }} | |
restore-keys: cache-lychee- | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
args: --max-concurrency 1 --cache --max-cache-age 1d --cache-exclude-status 300..=599 . | |
- name: Save lychee cache | |
if: always() | |
uses: actions/cache/save@v4 | |
with: | |
path: .lycheecache | |
key: ${{ steps.cache-restore.outputs.cache-primary-key }} | |
- name: Create Issue From File | |
if: steps.lychee.outputs.exit_code != 0 | |
uses: peter-evans/create-issue-from-file@v5 | |
with: | |
title: Link Checker Report | |
content-filepath: ./lychee/out.md | |
labels: report, bot-generated |