awesome-hacker-search-engines/.github/workflows/link-check.yml

17 lines
388 B
YAML
Raw Normal View History

2023-05-21 16:11:39 +00:00
name: Check Markdown links
on:
schedule:
2023-05-22 09:15:52 +00:00
# Run at 9:00 AM every Friday
- cron: "0 9 * * 5"
2023-05-21 16:11:39 +00:00
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
2023-05-21 16:27:34 +00:00
use-verbose-mode: 'yes'
2023-05-21 16:17:57 +00:00
config-file: '.github/mlc_config.json'
file-path: './README.md'