patch: bump lycheeverse/lychee-action from ec7614d7605b47efb08dc370f6d0a71884cba944 to fdea7032675810093199f485fe075f057cc37b3e #1771
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: | |
repository_dispatch: | |
# Run action manually when needed | |
workflow_dispatch: | |
# Check links once a week on Monday | |
schedule: | |
- cron: "00 00 * * 1" | |
# Runs on each PR for the master branch | |
pull_request: | |
branches: | |
- "master" | |
jobs: | |
Checking-Links: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks out a copy of your repository on the ubuntu-latest machine | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# fetch external files && Building the docs | |
- name: Build the docs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm run deploy-docs | |
- uses: actions/cache@v3 | |
with: | |
path: .lycheecache | |
key: cache-lychee-${{ github.sha }} | |
restore-keys: cache-lychee- | |
# Run link checker on the generated HTML | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@fdea7032675810093199f485fe075f057cc37b3e # 1.8.0 | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
with: | |
args: > | |
--config ./lychee.toml | |
"build/**/*" "tools/fetch-external.sh" | |
- name: Create Issue From File | |
if: | | |
github.event_name != 'pull_request' && | |
env.lychee_exit_code != 0 | |
uses: peter-evans/create-issue-from-file@v4 | |
with: | |
title: Link Checker Report | |
content-filepath: ./lychee/out.md | |
labels: good-first-issue, automated issue | |
- name: Save lychee cache | |
uses: actions/cache/save@v3 | |
if: always() | |
with: | |
path: .lycheecache | |
key: ${{ steps.restore-cache.outputs.cache-primary-key }} |