Skip to content

Instantly share code, notes, and snippets.

@sayrer
Created May 28, 2025 22:55
Show Gist options
  • Save sayrer/1fdee360799d26b26c19381d12cf549e to your computer and use it in GitHub Desktop.
Save sayrer/1fdee360799d26b26c19381d12cf549e to your computer and use it in GitHub Desktop.
Run markdown-lint for draft-ietf-modpod-group-processes
This repository runs `markdown-lint` as a GitHub Workflow when a PR is
submitted. It can be run locally using Docker with an identical configuration
to the GitHub Workflow.
```bash
docker run --rm \
-v "$(pwd)/draft-ietf-modpod-group-processes.md:\
/draft-ietf-modpod-group-processes.md:ro" \
-v "$(pwd)/.github/workflows/markdownlint.json:\
/markdownlint.json:ro" \
avtodev/markdown-lint:v1 \
--config ./markdownlint.json \
/draft-ietf-modpod-group-processes.md
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment