diff --git a/.github/workflows/checklinks.yml b/.github/workflows/checklinks.yml new file mode 100644 index 0000000..54dee6c --- /dev/null +++ b/.github/workflows/checklinks.yml @@ -0,0 +1,16 @@ +name: Check Markdown links + +on: + push + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.4.2@main + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + continue-on-error: true + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' + config-file: 'mlc_config.json' diff --git a/mlc_config.json b/mlc_config.json new file mode 100644 index 0000000..5e43e05 --- /dev/null +++ b/mlc_config.json @@ -0,0 +1,3 @@ +{ + "aliveStatusCodes": [429, 200] +}