awesome-hacker-search-engines/.github/workflows/link-check.yml
edoardottt 27e31c7b18 update
2023-05-21 18:17:57 +02:00

20 lines
506 B
YAML

name: Check Markdown links
on:
push:
branches:
- main
schedule:
# Run everyday at 9:00 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07)
- cron: "0 9 * * *"
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
config-file: '.github/mlc_config.json'
file-path: './README.md'