From d21e633669e6bde0b133206f1c3bb5fc9914394b Mon Sep 17 00:00:00 2001 From: Raventric <78981416+Ravencentric@users.noreply.github.com> Date: Wed, 13 Sep 2023 18:43:29 +0530 Subject: [PATCH] feat: check markdown links https://github.com/marketplace/actions/markdown-link-check --- .github/workflows/check-markdown-links.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/check-markdown-links.yml diff --git a/.github/workflows/check-markdown-links.yml b/.github/workflows/check-markdown-links.yml new file mode 100644 index 0000000..75fb026 --- /dev/null +++ b/.github/workflows/check-markdown-links.yml @@ -0,0 +1,14 @@ +name: Check Markdown links + +on: + push: + schedule: + - cron: "0 0 * * *" + workflow_dispatch: + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1