From 3c8bb0c11ca13b5db31981338d27f575944dffe7 Mon Sep 17 00:00:00 2001 From: Rafael Sene Date: Thu, 15 Feb 2024 13:36:09 -0800 Subject: [PATCH] Add broken link checker --- .github/workflows/broken-link-check.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/broken-link-check.yml diff --git a/.github/workflows/broken-link-check.yml b/.github/workflows/broken-link-check.yml new file mode 100644 index 00000000..160f29ad --- /dev/null +++ b/.github/workflows/broken-link-check.yml @@ -0,0 +1,12 @@ +on: + repository_dispatch: # run manually + types: [check-link] + +name: Broken Link Check +jobs: + check: + name: Broken Link Check + runs-on: ubuntu-latest + steps: + - name: Broken Link Check + uses: technote-space/broken-link-checker-action@v2 \ No newline at end of file