Markdown Links Check #598
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Markdown Links Check | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 18 * * *" | |
jobs: | |
check-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
# checks all markdown files from /docs including all subfolders | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
folder-path: 'docs/' | |
- uses: actions/checkout@master | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
# checks all markdown files from root but ignores subfolders | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
max-depth: 0 |