Skip to content

Commit

Permalink
feat: add monthly gh action to check for broken links (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnu-narayanan committed Jul 8, 2023
1 parent 752fb9a commit 8fba74c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .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}}



0 comments on commit 8fba74c

Please sign in to comment.