mirror of
https://github.com/luong-komorebi/Awesome-Linux-Software.git
synced 2024-10-01 01:45:42 -04:00
20 lines
510 B
YAML
20 lines
510 B
YAML
name: Markdown Links Check
|
|
on:
|
|
schedule:
|
|
- cron: "14 18 * * 6"
|
|
|
|
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 root but ignores subfolders
|
|
with:
|
|
use-quiet-mode: 'yes'
|
|
use-verbose-mode: 'yes'
|
|
config-file: '.github/workflows/markdown.links.config.json'
|
|
max-depth: 1
|
|
file-path: './README.md'
|
|
|