File tree Expand file tree Collapse file tree 4 files changed +46
-0
lines changed Expand file tree Collapse file tree 4 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Weekly job
2+
3+ on :
4+ schedule :
5+ # Run every Sunday at 9AM
6+ - cron : " 0 9 * * 0"
7+
8+ jobs :
9+ markdown-link-check :
10+ uses : ./.github/workflows/markdown-link-check.yml
Original file line number Diff line number Diff line change 1+ name : Main workflow
2+
3+ on :
4+ push :
5+ branches :
6+ - ' master'
7+ pull_request :
8+ branches :
9+ - ' **'
10+
11+ jobs :
12+ markdown-link-check :
13+ uses : ./.github/workflows/markdown-link-check.yml
14+
Original file line number Diff line number Diff line change 1+ {
2+ "ignorePatterns" : [
3+ {
4+ "pattern" : " ^https?://localhost.*"
5+ }
6+ ]
7+ }
Original file line number Diff line number Diff line change 1+ # Checks for any broken links in markdown files
2+ name : Check Markdown links
3+
4+ on : workflow_call
5+
6+ jobs :
7+ check-links :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v3
11+ - uses : gaurav-nelson/github-action-markdown-link-check@v1
12+ with :
13+ use-verbose-mode : ' yes'
14+ config-file : ' .github/workflows/markdown-link-check.config.json'
15+
You can’t perform that action at this time.
0 commit comments