Skip to content

Add lychee link checker github workflow #2

Add lychee link checker github workflow

Add lychee link checker github workflow #2

Workflow file for this run

name: Links

Check failure on line 1 in .github/workflows/links.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/links.yml

Invalid workflow file

invalid `cron` attribute "7 37 * * *"
on:
repository_dispatch:
workflow_dispatch:
schedule:
- cron: "7 37 * * *"
jobs:
linkChecker:
runs-on: ubuntu-latest
permissions:
issues: write # required for peter-evans/create-issue-from-file
steps:
- uses: actions/checkout@v4
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v2
with:
fail: false
- name: Create Issue From File
if: steps.lychee.outputs.exit_code != 0
uses: peter-evans/create-issue-from-file@v6
with:
title: Link Checker Report
content-filepath: ./lychee/out.md
labels: report, automated issue