Graduate EPAC to its immutable public release #18
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: stack-consistency | |
| on: | |
| pull_request: | |
| paths: | |
| - 'stack-manifest.json' | |
| - 'STACK_MANIFEST.md' | |
| - 'README.md' | |
| - 'AGENTS.md' | |
| - 'research/**' | |
| - 'libs/**' | |
| - 'tools/check_stack_consistency.py' | |
| - 'integration/epac/**' | |
| - 'docs/work-graphs/repository-plan-report.json' | |
| - '.agents/skills/stack-update/**' | |
| - '.github/workflows/stack-consistency.yml' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'stack-manifest.json' | |
| - 'STACK_MANIFEST.md' | |
| - 'README.md' | |
| - 'AGENTS.md' | |
| - 'research/**' | |
| - 'libs/**' | |
| - 'tools/check_stack_consistency.py' | |
| - 'integration/epac/**' | |
| - 'docs/work-graphs/repository-plan-report.json' | |
| - '.agents/skills/stack-update/**' | |
| - '.github/workflows/stack-consistency.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| consistency: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Verify stack authority and provenance projections | |
| run: python tools/check_stack_consistency.py |