Skip to content

chore: add markdown hygiene checks and governance docs #11

chore: add markdown hygiene checks and governance docs

chore: add markdown hygiene checks and governance docs #11

Workflow file for this run

name: Markdown Hygiene
on:
pull_request:
paths:
- '**/*.md'
- 'scripts/check_markdown_hygiene.py'
- '.github/workflows/docs-hygiene.yml'
schedule:
- cron: '0 6 * * 1'
workflow_dispatch:
permissions:
contents: read
jobs:
markdown-hygiene:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Run markdown hygiene checks
run: python scripts/check_markdown_hygiene.py --root . --include .github --include README.md --include profile