Skip to content

Commit 538dcd5

Browse files
committed
Updates link check configuration
Changes the link check configuration to handle GitHub docs rate limiting more effectively. Instead of retrying requests, it now considers 429 (Too Many Requests) as an acceptable status code to avoid being blocked.
1 parent bfa260d commit 538dcd5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/markdown-link-check-config-for-repo.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,5 @@
3939
"description": "Avoids 403s from GitHub docs"
4040
}
4141
],
42-
"retryOn429": true,
43-
"retryCount": 3,
44-
"fallbackRetryDelay": "3s"
42+
"aliveStatusCodes": [429, 200]
4543
}

0 commit comments

Comments
 (0)