Skip to content

Commit 7c74b0c

Browse files
committed
Update link checking action to supported fork, add config to retry
1 parent 0e13bc4 commit 7c74b0c

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.github/workflows/lint_links.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323
with:
2424
submodules: recursive
25-
- uses: gaurav-nelson/github-action-markdown-link-check@v1
25+
- uses: tcort/github-action-markdown-link-check@v1
2626
with:
2727
use-quiet-mode: "yes"
2828
check-modified-files-only: ${{ (github.event_name == 'pull_request' && 'yes') || 'no' }}
29-
submodules: true

mlc_config.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"httpHeaders": [
3+
{
4+
"urls": [
5+
"https://github.com/",
6+
"https://guides.github.com/",
7+
"https://help.github.com/",
8+
"https://docs.github.com/"
9+
],
10+
"headers": {
11+
"Accept-Encoding": "zstd, br, gzip, deflate"
12+
}
13+
}
14+
],
15+
"retryOn429": true
16+
}

0 commit comments

Comments
 (0)