From 457a4a5071d382e13826c5801dd9325c6a8ff8e6 Mon Sep 17 00:00:00 2001 From: Tanay Pant <7481165+tanay1337@users.noreply.github.com> Date: Mon, 23 Oct 2023 15:32:11 +0200 Subject: [PATCH] Link check workflow (#259) * Link check workflow * Test a fix * Updates * Fixes --------- Co-authored-by: Tanay Pant --- .github/workflows/link-check.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/link-check.yml diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml new file mode 100644 index 00000000..09e3efb9 --- /dev/null +++ b/.github/workflows/link-check.yml @@ -0,0 +1,19 @@ +name: Link check for PRs + +on: + pull_request: + branches: + - main + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' + folder-path: './' + base-branch: 'main' + check-modified-files-only: 'yes'