From 6f559f37d5ca76fe6f69d3f56c226d5c65d09998 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Thu, 21 Oct 2021 15:32:43 +0200 Subject: [PATCH] Check broken links in repo --- .github/workflows/broken-link-check.yml | 16 ++++++++++++++++ 1 file changed, 16 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 0000000000..c88b7e489e --- /dev/null +++ b/.github/workflows/broken-link-check.yml @@ -0,0 +1,16 @@ +on: + schedule: + - cron: "0 0 * * *" # daily + repository_dispatch: # run manually + types: [check-link] + # push: + # ... + +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.2.9