Check External Links #249
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: Check External Links | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "00 8 * * *" | |
jobs: | |
link-check: | |
name: Check links | |
runs-on: ubuntu-latest | |
steps: | |
# Check out so the .lycheeignore is available | |
- uses: actions/checkout@v3 | |
- name: Check links | |
id: lychee | |
uses: lycheeverse/[email protected] | |
with: | |
args: https://rmoff.net --no-progress --exclude https://www.reddit.com | |
fail: false | |
jobSummary: true | |
format: markdown | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Create Issue From File | |
if: env.lychee_exit_code != 0 | |
uses: peter-evans/create-issue-from-file@v4 | |
with: | |
title: Link Checker Report | |
content-filepath: ./lychee/out.md | |
labels: report, automated issue |