Check Markdown Links #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
# Check for broken links in articles + pages on push and weekly. | |
name: Check Markdown Links | |
on: | |
pull_request: | |
push: | |
branches: | |
- src | |
schedule: | |
# Run every Monday at midnight UTC | |
- cron: "0 0 * * 1" | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
folder-path: 'content' | |
config-file: '.mlc_config.json' |