Skip to content

Commit

Permalink
ci: Add Markdown Links Checker (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
tungbq authored Jan 6, 2024
2 parents 7aeadb7 + 016092b commit 60a9753
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/markdown-link-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Markdown Links Checker
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0' # weekly run
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154
# checks all markdown files from root but ignores subfolders
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
max-depth: 0

0 comments on commit 60a9753

Please sign in to comment.