docs(changelog): MCP server API token auth for headless and CI use #28
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: Changelog nav check | |
| on: | |
| pull_request: | |
| paths: | |
| - 'changelog/**' | |
| - 'docs.json' | |
| - 'merge-queue/changelog.mdx' | |
| - 'flaky-tests/changelog.mdx' | |
| - 'scripts/sync-changelog.py' | |
| jobs: | |
| check-sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Check changelog nav is in sync | |
| run: python3 scripts/sync-changelog.py --check |