mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-10 23:10:59 +00:00
The upstream fix for link syntax has landed. - Uncomment the workflow and bump the version. - Add a config file to encourage retries.
19 lines
381 B
YAML
19 lines
381 B
YAML
name: Check Markdown links
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.14
|
|
with:
|
|
check-modified-files-only: 'yes'
|
|
config-file: '.md-link-check.json'
|