Skip to content

Commit d8a9ecf

Browse files
authored
chore: retry link check on 429 (#1426)
1 parent b1fc285 commit d8a9ecf

3 files changed

Lines changed: 13 additions & 8 deletions

File tree

.github/workflows/check-md-links.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ jobs:
1515
- uses: gaurav-nelson/github-action-markdown-link-check@v1
1616
with:
1717
use-quiet-mode: 'yes'
18-
use-verbose-mode: 'yes'
18+
use-verbose-mode: 'yes'
19+
config-file: '.github/workflows/mlc_config.json'

.github/workflows/mlc_config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"ignorePatterns": [
3+
{
4+
"pattern": "^https://x.com"
5+
}
6+
],
7+
"timeout": "20s",
8+
"retryOn429": true,
9+
"retryCount": 3,
10+
"fallbackRetryDelay": "30s"
11+
}

mlc_config.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)