Add Markdown Link Check action

This commit is contained in:
Christopher Duncan 2022-10-10 22:05:40 -04:00
parent 5a7211d874
commit b13b1584b1
No known key found for this signature in database
GPG Key ID: CCC42F03843A4CA8

View File

@ -0,0 +1,19 @@
on: [pull_request]
name: Check Markdown links
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
check-modified-files-only: 'yes'
base-branch: 'main'