2022-10-22 07:16:59 -04:00
|
|
|
name: Markdown Links Check
|
2022-10-22 07:03:38 -04:00
|
|
|
on:
|
2022-10-22 07:16:59 -04:00
|
|
|
schedule:
|
2022-10-29 14:13:20 -04:00
|
|
|
- cron: "14 18 * * 6"
|
2022-10-22 06:54:32 -04:00
|
|
|
|
|
|
|
jobs:
|
2022-10-22 07:16:59 -04:00
|
|
|
check-links:
|
2022-10-22 06:54:32 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-22 07:16:59 -04:00
|
|
|
- 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'
|
|
|
|
config-file: '.github/workflows/markdown.links.config.json'
|
2022-10-29 14:13:20 -04:00
|
|
|
max-depth: 1
|
|
|
|
file-path: './README.md'
|
2022-10-22 07:16:59 -04:00
|
|
|
|