developer-portfolios/.github/workflows/link-checker.yml

26 lines
616 B
YAML
Raw Normal View History

2020-05-26 21:07:23 +00:00
on:
2022-01-14 22:11:24 +00:00
repository_dispatch:
workflow_dispatch:
schedule:
2022-12-20 12:06:44 +00:00
- cron: "00 18 * * 0"
2020-05-26 21:07:23 +00:00
name: Check markdown links
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
2022-08-22 18:21:14 +00:00
- uses: actions/checkout@v3
2020-05-26 21:07:23 +00:00
- name: Link Checker
2022-08-22 18:21:14 +00:00
id: lychee
uses: lycheeverse/lychee-action@v1.5.1
2020-05-26 21:07:23 +00:00
with:
args: README.md
2022-08-22 18:21:14 +00:00
2020-05-26 21:07:23 +00:00
- name: Create Issue From File
2022-08-22 18:21:14 +00:00
if: steps.lychee.outputs.exit_code != 0
uses: peter-evans/create-issue-from-file@v4
2020-05-26 21:07:23 +00:00
with:
title: "[Bot] Broken Links Report"
content-filepath: ./lychee/out.md
2020-05-26 21:07:23 +00:00
labels: report