2022-04-19 15:13:40 -07:00
|
|
|
name: Links
|
|
|
|
|
|
|
|
on:
|
|
|
|
repository_dispatch:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
# Everyday at 9:00 AM.
|
|
|
|
- cron: "0 9 * * *"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check-links:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Link Checker
|
|
|
|
id: lychee
|
2022-11-22 16:14:53 -08:00
|
|
|
uses: lycheeverse/lychee-action@v1.5.4
|
2022-04-19 15:13:40 -07:00
|
|
|
|
|
|
|
- name: Create Issue From File
|
|
|
|
if: steps.lychee.outputs.exit_code != 0
|
2022-04-25 08:05:40 -07:00
|
|
|
uses: peter-evans/create-issue-from-file@v4
|
2022-04-19 15:13:40 -07:00
|
|
|
with:
|
|
|
|
title: Link Checker Report
|
|
|
|
content-filepath: ./lychee/out.md
|
|
|
|
labels: report, bot-generated
|