Chore/bootstrap GitHub sdlc assets(DO NOT MERGE, ALREADY SPLIT) #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |