AOC 2024 Day 15 Part 1 #120
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: 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@v3 | |
| - uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| # use-quiet-mode: 'yes' | |
| # use-verbose-mode: 'yes' | |
| config-file: ".config/mlc_config.json" | |
| # folder-path: 'docs/markdown_files' | |
| check-modified-files-only: "yes" | |
| base-branch: "main" |