2021-02-13 20:41:48 +00:00
|
|
|
name: Check Markdown links
|
|
|
|
|
2023-07-12 21:26:59 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '**.md'
|
|
|
|
- .github/workflows/check-md-links.yml
|
|
|
|
|
|
|
|
schedule:
|
|
|
|
# The markdown files are not frequently modified. So run the job at least
|
|
|
|
# once every week.
|
|
|
|
- cron: '30 1 * * TUE'
|
2021-02-13 20:41:48 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
markdown-link-check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
2021-06-21 21:34:13 +00:00
|
|
|
with:
|
2021-06-21 21:37:26 +00:00
|
|
|
config-file: '.github/mlc_config.json'
|