Files
howtheysre/.github/workflows/link_check.yml
Unmesh Gundecha 68bee0a687 Initial Commit
2021-02-14 22:03:29 +08:00

16 lines
289 B
YAML

name: Check Markdown links
on:
push:
branches:
- master
schedule:
# Run every Monday
- 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