From 016092b656c59050de0d10cc6f0ad3403e0e1102 Mon Sep 17 00:00:00 2001 From: Tung Bui Date: Sat, 6 Jan 2024 11:11:13 +0700 Subject: [PATCH] ci: Add Markdown Links Checker --- .github/workflows/markdown-link-checker.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/markdown-link-checker.yml diff --git a/.github/workflows/markdown-link-checker.yml b/.github/workflows/markdown-link-checker.yml new file mode 100644 index 0000000..f0ea488 --- /dev/null +++ b/.github/workflows/markdown-link-checker.yml @@ -0,0 +1,16 @@ +name: Markdown Links Checker +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * 0' # weekly run +jobs: + check-links: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154 + # checks all markdown files from root but ignores subfolders + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' + max-depth: 0