Skip to content

Commit

Permalink
working on Broken Link Checker - Github Action rupali-codes#2357
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanPabloDiaz committed May 30, 2024
1 parent c82c774 commit 1fe79cf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/broken-link-checker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Broken Link Checker
on:
repository_dispatch:
types: [test]
workflow_dispatch:
schedule:
- cron: '00 18 * * *'
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check Links
uses: lycheeverse/lychee-action@v1.10.0
with:
args: --verbose --no-progress './**/*.md' './**/*.html' './**/*.rst' --exclude-mail --exclude 'http://localhost:*/*'
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 1fe79cf

Please sign in to comment.