From 1a7a01f399e3b7a7d1d8ee783a26a17ce429194a Mon Sep 17 00:00:00 2001 From: "H. Joe Lee" Date: Mon, 25 Mar 2024 11:19:34 -0500 Subject: [PATCH] Add markdown link checker action (#4219) --- .github/workflows/markdown-link-check.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/markdown-link-check.yml diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml new file mode 100644 index 00000000000..00cb686c082 --- /dev/null +++ b/.github/workflows/markdown-link-check.yml @@ -0,0 +1,14 @@ +name: Check Markdown links + +on: + workflow_dispatch: + push: + pull_request: + branches: [ develop ] + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1