Skip to content

Commit 98e6267

Browse files
committed
Revert "Switch markdown-link-checker for linkspector"
This reverts commit f0be7c7.
1 parent 2604c8c commit 98e6267

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed

.github/workflows/check-links.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@ on:
77
jobs:
88
check-links:
99
name: Linkspector
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13-
- name: Run linkspector
14-
uses: umbrelladocs/action-linkspector@v1
13+
- uses: gaurav-nelson/github-action-markdown-link-check@v1
1514
with:
16-
github_token: ${{ secrets.github_token }}
17-
reporter: github-pr-review
18-
fail_on_error: true
15+
use-quiet-mode: "yes"
16+
use-verbose-mode: "yes"

mlc_config.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"ignorePatterns": [
3+
{
4+
"pattern": "^https?://www.turing.ac.uk/.*"
5+
},
6+
{
7+
"pattern": "^https?://sqlitebrowser.org/.*"
8+
},
9+
{
10+
"pattern": "^https?://clockify.me/.*"
11+
}
12+
],
13+
"timeout": "180s",
14+
"retryOn429": true,
15+
"retryCount": 5,
16+
"fallbackRetryDelay": "30s",
17+
"aliveStatusCodes": [
18+
200,
19+
206
20+
]
21+
}

0 commit comments

Comments
 (0)