Add PR comment command to trigger full CI suite and fix workflow issu… #596
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: [master] | |
| paths: | |
| - '**.md' | |
| - '.github/workflows/check-markdown-links.yml' | |
| - '.github/markdown-link-check-config.json' | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| - '.github/workflows/check-markdown-links.yml' | |
| - '.github/markdown-link-check-config.json' | |
| schedule: | |
| # Run weekly on Monday at 8am UTC | |
| - cron: '0 8 * * 1' | |
| workflow_dispatch: | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check markdown links (with retry on transient errors) | |
| uses: Wandalen/[email protected] | |
| with: | |
| action: tcort/github-action-markdown-link-check@a800ad5f1c35bf61987946fd31c15726a1c9f2ba | |
| with: | | |
| use-quiet-mode: yes | |
| use-verbose-mode: no | |
| config-file: .github/markdown-link-check-config.json | |
| folder-path: docs/ | |
| file-extension: .md | |
| max-depth: -1 | |
| check-modified-files-only: no | |
| base-branch: master | |
| attempt_limit: 3 | |
| attempt_delay: 10000 |