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