From 7f86a6a26f9a6c9b9cef5414dd96a198d766581a Mon Sep 17 00:00:00 2001 From: Simon Egersand Date: Sat, 19 Mar 2022 17:58:35 +0100 Subject: [PATCH] Validate that links are up once a week (#1172) Co-authored-by: Sindre Sorhus --- .github/workflows/links.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/links.yml diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml new file mode 100644 index 0000000..1721498 --- /dev/null +++ b/.github/workflows/links.yml @@ -0,0 +1,16 @@ +name: Links +on: + schedule: + # Run at 00:00 UTC every Sunday + - cron: '0 0 * * */7' +env: + FORCE_COLOR: 1 +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Validate that links are up + uses: simeg/urlsup-action@v1.0.0 + with: + args: readme.md --threads 10