diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml new file mode 100644 index 00000000..bcbcb597 --- /dev/null +++ b/.github/workflows/link-check.yml @@ -0,0 +1,14 @@ +# This is a basic workflow to help you get started with Actions + +on: [pull_request] +name: Check links for modified files +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' + check-modified-files-only: 'yes' \ No newline at end of file