Daily Markdown Link Check #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Daily Markdown Link Check | |
run-name: ${{github.event.pull_request.title}} | |
on: | |
schedule: | |
# Run every 5 minutes for the first days, then will be updated to run everyday at 6:00 AM | |
- cron: "*/5 * * * *" | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
config-file: '.mlc.config.json' | |
folder-path: '.' | |
max-depth: -1 |