summaryrefslogtreecommitdiffstats
path: root/.github/workflows/check-md-links.yml
blob: ef17d243a62e2918b44b4c9fc6cb825ed5deba22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: Check Markdown links

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'

jobs:
  markdown-link-check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - uses: gaurav-nelson/github-action-markdown-link-check@v1
        with:
          config-file: '.github/mlc_config.json'