mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-08 14:21:14 +00:00
* ci: Run Markdown link checker nightly Signed-off-by: Thane Thomson <connect@thanethomson.com> * ci: Switch to Informal Systems fork of link checker Signed-off-by: Thane Thomson <connect@thanethomson.com> * Update link checker config to work with GitHub As per https://github.com/tcort/markdown-link-check/issues/201#issuecomment-1110242146 Signed-off-by: Thane Thomson <connect@thanethomson.com> Signed-off-by: Thane Thomson <connect@thanethomson.com>
21 lines
443 B
YAML
21 lines
443 B
YAML
name: Check Markdown links
|
|
|
|
on:
|
|
schedule:
|
|
# 2am UTC daily
|
|
- cron: '0 2 * * *'
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
strategy:
|
|
matrix:
|
|
branch: ['main', 'v0.37.x', 'v0.34.x']
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ matrix.branch }}
|
|
- uses: informalsystems/github-action-markdown-link-check@main
|
|
with:
|
|
config-file: '.md-link-check.json'
|