-
Notifications
You must be signed in to change notification settings - Fork 101
40 lines (34 loc) · 1.06 KB
/
check-readme-links.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Check Markdown Links
on:
push:
branches:
- main
workflow_dispatch:
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check Links 🔍
id: lychee
uses: lycheeverse/lychee-action@v1.9.3
with:
args: --verbose --no-progress './*.md'
fail: true
format: markdown
output: ./lychee/out.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Issue From File
if: steps.lychee.outputs.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
body: |
A link checker scan has found broken links in the repository's markdown files.
### Files Scanned
- All markdown (*.md) files in the root directory
### Results
See below for the detailed report of broken links: