mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-10 15:07:24 +00:00
21 lines
434 B
YAML
21 lines
434 B
YAML
# Verify that important design docs have ToC entries.
|
|
name: Check documentation ToC
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: technote-space/get-diff-action@v6
|
|
with:
|
|
PATTERNS: |
|
|
docs/architecture/**
|
|
docs/rfc/**
|
|
- run: ./docs/presubmit.sh
|
|
if: env.GIT_DIFF
|