Clean up and update full config file (#1000) #235
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run Link Checker for Cron Job | |
| on: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| # Run everyday at 3:00 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07) | |
| - cron: "0 3 * * *" | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: tcort/github-action-markdown-link-check@v1 | |
| with: | |
| config-file: 'mlc_config.json' | |
| use-quiet-mode: 'no' | |
| use-verbose-mode: 'yes' |