Skip to content

Commit

Permalink
#294
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ committed Jul 10, 2024
1 parent 2a83fe3 commit d9a32bc
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/linkchecker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: markdown-link-check

on:
push:
paths:
- documentos/proyecto/*.md
- mlc_config.json
schedule:
- cron: '8 8 * * 2'

jobs:
markdown-link-check:
name: Check markdown files for broken links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Markdown links check
uses: ruzickap/action-my-markdown-link-checker@v1
with:
config_file: mlc_config.json
debug: true
search_paths: |
documentos/proyecto/
7 changes: 7 additions & 0 deletions mlc_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"timeout": "20s",
"retryOn429": true,
"retryCount": 5,
"fallbackRetryDelay": "30s",
"aliveStatusCodes": [200, 206]
}

0 comments on commit d9a32bc

Please sign in to comment.