2020-05-26 21:07:23 +00:00
|
|
|
on:
|
2022-01-14 22:11:24 +00:00
|
|
|
repository_dispatch:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: "00 18 * * *"
|
2020-05-26 21:07:23 +00:00
|
|
|
name: Check markdown links
|
|
|
|
jobs:
|
|
|
|
linkChecker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Link Checker
|
2022-03-26 16:33:09 +00:00
|
|
|
uses: lycheeverse/lychee-action@v1.4.1
|
2020-05-26 21:07:23 +00:00
|
|
|
with:
|
|
|
|
args: README.md
|
|
|
|
- name: Create Issue From File
|
|
|
|
uses: peter-evans/create-issue-from-file@v2
|
|
|
|
with:
|
|
|
|
title: "[Bot] Broken Links Report"
|
2021-03-23 20:54:40 +00:00
|
|
|
content-filepath: ./lychee/out.md
|
2020-05-26 21:07:23 +00:00
|
|
|
labels: report
|