diff --git a/.github/workflows/md_links.yml b/.github/workflows/md_links.yml new file mode 100644 index 0000000..9edecc9 --- /dev/null +++ b/.github/workflows/md_links.yml @@ -0,0 +1,17 @@ +name: Check Markdown links + +on: + workflow_dispatch: + push: + schedule: + # Run everyday at 9:00 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07) + - cron: "0 9 * * *" + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1.0.15 + with: + use-verbose-mode: 'yes'