Skip to content

Commit 696a94d

Browse files
Create Broken-links-checker-Manual
1 parent 0811b60 commit 696a94d

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Manual Broken Link Check
2+
3+
on:
4+
workflow_dispatch: # Only run manually
5+
6+
jobs:
7+
lychee:
8+
name: Broken Link Checker
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
15+
- name: Run Lychee link checker
16+
id: lychee
17+
uses: lycheeverse/[email protected]
18+
with:
19+
args: >
20+
--verbose
21+
--exclude-mail
22+
--no-progress
23+
--exclude ^https?://
24+
'**/*.md'
25+
output: lychee/out.md
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
29+
- name: Show report
30+
run: |
31+
echo "=== Broken Link Report ==="
32+
cat lychee/out.md

0 commit comments

Comments
 (0)