Skip to content

Commit 12172d7

Browse files
authored
Merge pull request #837 from IntersectMBO/mgalazyn/chore/add-timeouts-to-markdown-link-check
markdown-link-check: Add retry on HTTP 429
2 parents f1f262f + 623083c commit 12172d7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/markdown-links-ci-check.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12-
- uses: gaurav-nelson/github-action-markdown-link-check@v1
12+
- run: |
13+
cat <<EOF > mlc_config.json
14+
{
15+
"retryOn429": true,
16+
}
17+
EOF
18+
- uses: tcort/github-action-markdown-link-check@a800ad5f1c35bf61987946fd31c15726a1c9f2ba # 1.1.0
1319
with:
1420
use-quiet-mode: yes
21+
config-file: 'mlc_config.json'

0 commit comments

Comments
 (0)