We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0811b60 commit 696a94dCopy full SHA for 696a94d
.github/workflows/Broken-links-checker-Manual
@@ -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