Skip to content

check links

check links #272

Workflow file for this run

name: check links
on:
repository_dispatch:
workflow_dispatch:
schedule:
- cron: "00 18 * * *"
permissions: read-all
jobs:
check-links:
runs-on: ubuntu-22.04
permissions:
issues: write
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@ec3ed119d4f44ad2673a7232460dc7dff59d2421 # v1.8.0
with:
args: "--config=.lychee.toml ."
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Look for an existing issue
id: last-issue
uses: micalevisk/last-issue-action@305829d9728f47beb0029417167a0af890edfd6e # v2.1.0
with:
state: open
labels: link-check
- name: Create Issue From File
if: ${{ env.lychee_exit_code != 0 }}
uses: peter-evans/create-issue-from-file@433e51abf769039ee20ba1293a088ca19d573b7f # tag=v4.0.1
with:
title: Link Checker Report
content-filepath: ./lychee/out.md
issue-number: ${{ steps.last-issue.outputs.issue_number }}
labels: report, automated issue, link-check