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/" +