Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

markdown-links-check: allow 203 as valid return code #1369

Merged
merged 2 commits into from
Mar 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Note: Can be used with `megalinter/megalinter@beta` in your GitHub Action mega-l

- Linters
- Disable rstfmt as it is neither stable or maintained
- markdown-links-check: allow 203 as valid return code

- Fixes
- Github Comment Reporter: switch to using a hidden HTML comment to mark the comment, with the current workflow and jobid. This is more robust than the old method. ([[#1355](https://github.com/megalinter/megalinter/issues/1355))
Expand Down
3 changes: 2 additions & 1 deletion TEMPLATES/.markdown-link-check.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"retryOn429": true,
"retryCount": 5
"retryCount": 5,
"aliveStatusCodes": [ 200, 203 ]
}