build(deps): bump EddieHubCommunity/gh-actions-html-table-generator from f61e7a93e2d5718f0eef5a447d07a8a12dc2cddd to 894ae88cb56c2f8aa6d69d60cc303d04c92e4337 #15
Workflow file for this run
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: Link checker | |
on: | |
workflow_dispatch: | |
pull_request: null | |
schedule: | |
- cron: 0 0 * * 0 | |
jobs: | |
link-checker: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Restore lychee cache | |
uses: actions/cache@v4 | |
with: | |
path: .lycheecache | |
key: cache-lychee-${{ github.sha }} | |
restore-keys: cache-lychee- | |
- name: Run lychee | |
uses: lycheeverse/[email protected] | |
id: lychee | |
with: | |
args: "--base . --cache --max-cache-age 1d ." | |
- name: Create issue | |
if: env.lychee_exit_code != 0 | |
uses: peter-evans/create-issue-from-file@v5 | |
with: | |
title: Link checker report | |
labels: 'bug' | |
content-filepath: ./lychee/out.md |