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>
43 lines
1011 B
YAML
43 lines
1011 B
YAML
name: Repo State Header Gate
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
header-gate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Kill_LIFE
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.11"
|
|
|
|
- name: Prepare environment integrations
|
|
run: |
|
|
echo "No sibling repo clones configured for this environment"
|
|
|
|
- name: Build global header
|
|
run: |
|
|
tools/repo_state/repo_refresh.sh --header-only
|
|
|
|
- name: Lint header contract
|
|
run: |
|
|
python3 tools/repo_state/lint_header_contract.py
|
|
|
|
- name: Upload global repo-state artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: global-repo-state
|
|
path: |
|
|
artifacts/repo_state/global_summary.md
|
|
artifacts/repo_state/global_index.json
|
|
artifacts/repo_state/header.latest.md
|