mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-09 22:47:24 +00:00
24 lines
509 B
YAML
24 lines
509 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: technote-space/get-diff-action@v6
|
|
with:
|
|
PATTERNS: |
|
|
**/**.md
|
|
- uses: creachadair/github-action-markdown-link-check@master
|
|
with:
|
|
check-modified-files-only: 'yes'
|
|
config-file: '.md-link-check.json'
|
|
if: env.GIT_DIFF
|