From 67d8586cff5b2766f8fd55bfa9b6f79530a8d0f1 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Thu, 12 Sep 2024 14:55:06 -0400 Subject: [PATCH] Run link check overy monday at noon UTC --- .github/workflows/link-check.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/link-check.yml diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml new file mode 100644 index 000000000..22be4c565 --- /dev/null +++ b/.github/workflows/link-check.yml @@ -0,0 +1,16 @@ +name: Check links + +on: + schedule: + # Every Monday at noon UTC + - cron: "0 12 * * 1" + +jobs: + check_urls: + runs-on: ubuntu-latest + steps: + - name: Check links + uses: paulschuberth/check-links-action@v1 + with: + start-url: "https://docs.tezos.com/" +