924750d5be
- Add docs_reference_gate and mesh_contracts workflows - Update repo_state_header_gate workflow - Update README, Makefile, SYNTHESE_AGENTIQUE - Add .claude/settings.json - Update deploy/cad/README Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
749 B
YAML
35 lines
749 B
YAML
name: docs-reference-gate
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
paths:
|
|
- "README.md"
|
|
- "docs/**"
|
|
- "specs/**"
|
|
- "tools/doc/readme_repo_coherence.sh"
|
|
- ".github/workflows/docs_reference_gate.yml"
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "README.md"
|
|
- "docs/**"
|
|
- "specs/**"
|
|
- "tools/doc/readme_repo_coherence.sh"
|
|
- ".github/workflows/docs_reference_gate.yml"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
readme-repo-coherence:
|
|
name: README repo coherence
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Audit README and repo references
|
|
shell: bash
|
|
run: bash tools/doc/readme_repo_coherence.sh audit
|