We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a4c833 commit fc2ae75Copy full SHA for fc2ae75
.github/linkspector.yml
@@ -0,0 +1,8 @@
1
+files:
2
+ - README.md
3
+dirs:
4
+ - ./
5
+ - doc
6
+useGitIgnore: true
7
+ignorePatterns:
8
+ - pattern: '^http://localhost:.*$'
.github/workflows/check-md-links.yml
@@ -5,10 +5,14 @@ on: push
jobs:
check-markdown-links:
name: 'Check Markdown links'
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
9
steps:
10
- uses: actions/checkout@v4
11
- - uses: gaurav-nelson/github-action-markdown-link-check@v1
+ - uses: umbrelladocs/action-linkspector@v1.3.2
12
with:
13
- check-modified-files-only: 'no'
14
- config-file: '.github/check-md-links.json'
+ github_token: ${{ secrets.github_token }}
+ reporter: github-pr-check
15
+ fail_on_error: true
16
+ filter_mode: nofilter
17
+ config_file: '.github/linkspector.yml'
18
+ level: 'info'
0 commit comments