From 25fd8d50cc05aa45697cd269a6565011edfb39f1 Mon Sep 17 00:00:00 2001 From: John Ky Date: Thu, 12 Jan 2023 11:24:01 +1100 Subject: [PATCH] Markdown links CI check --- .github/workflows/markdown-links-ci-check.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/markdown-links-ci-check.yml diff --git a/.github/workflows/markdown-links-ci-check.yml b/.github/workflows/markdown-links-ci-check.yml new file mode 100644 index 00000000000..e4282bdbb8b --- /dev/null +++ b/.github/workflows/markdown-links-ci-check.yml @@ -0,0 +1,12 @@ +name: Check Markdown links + +on: push + +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