From 6a27b21964c22a4002d46aaecea5efa8b7e9021c Mon Sep 17 00:00:00 2001 From: Stephen Fluin Date: Mon, 19 Jul 2021 14:53:37 -0500 Subject: [PATCH] add regular link checking to CI --- .github/workflows/check-links.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/check-links.yml diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml new file mode 100644 index 00000000000..71fd7608c73 --- /dev/null +++ b/.github/workflows/check-links.yml @@ -0,0 +1,19 @@ +name: Check Docs and Site Links + +on: + schedule: + - cron: '30 8 * * *' + +jobs: + check-links: + name: Regularly check links + runs-on: ubuntu-latest + steps: + - name: Check docs links with linkcheck + uses: filiph/linkcheck@v2.0.15+1 + with: + arguments: https://docs.chain.link/ -e + - name: Check chain.link with linkcheck + uses: filiph/linkcheck@v2.0.15+1 + with: + arguments: https://chain.link -e