From 8fba74c2f21b5c0034752e1fbcf185f5db4b8f10 Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Sat, 8 Jul 2023 11:33:22 +0530 Subject: [PATCH] feat: add monthly gh action to check for broken links (#424) --- .github/workflows/broken-links-check.yml | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/broken-links-check.yml diff --git a/.github/workflows/broken-links-check.yml b/.github/workflows/broken-links-check.yml new file mode 100644 index 00000000..54d7016b --- /dev/null +++ b/.github/workflows/broken-links-check.yml @@ -0,0 +1,25 @@ +on: + schedule: + - cron: 0 10 1 * * + repository_dispatch: + types: [check-link] + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + +name: Broken Link Check +jobs: + check: + name: Broken Link Check + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Broken Link Check + uses: technote-space/broken-link-checker-action@gh-actions + with: + TARGET: "https://www.chatwoot.com" + GITHUB_TOKEN: ${{secrets.ACCESS_TOKEN}} + + +