Skip to content

Commit 4055b49

Browse files
committed
feat: check link
1 parent 9c31b3e commit 4055b49

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/markdown-links.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Check Markdown links
2+
on:
3+
pull_request:
4+
5+
6+
jobs:
7+
markdown-link-check:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Link Checker
12+
id: lychee
13+
uses: lycheeverse/[email protected]
14+
15+
- name: Create Issue From File
16+
if: env.lychee_exit_code != 0
17+
uses: peter-evans/create-issue-from-file@v4
18+
with:
19+
title: Link Checker Report
20+
content-filepath: ./lychee/out.md
21+
labels: report, automated issue

0 commit comments

Comments
 (0)