feat(home): read-only duplicate inventory + owner-driven seating (POST /home/seat) + Proposed ADR-0060/0065 (partial #449) #114
Workflow file for this run
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: ADR Governance | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/adr/**' | |
| - 'docs/grounding/**' | |
| - '.adr-kit.yaml' | |
| - 'scripts/adr-governance.py' | |
| - '.github/workflows/adr-governance.yml' | |
| push: | |
| branches: | |
| - main | |
| - master | |
| paths: | |
| - 'docs/adr/**' | |
| - 'docs/grounding/**' | |
| - '.adr-kit.yaml' | |
| - 'scripts/adr-governance.py' | |
| - '.github/workflows/adr-governance.yml' | |
| jobs: | |
| adr-governance: | |
| name: Validate ADRs and immutable Accepted status | |
| runs-on: ubuntu-latest | |
| env: | |
| # Push event: previous branch tip (all-zeros on branch creation/force-push). | |
| GITHUB_BEFORE: ${{ github.event.before }} | |
| # Pull-request event: exact base commit SHA. | |
| GITHUB_BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Unit-test ADR governance helpers | |
| run: python3 scripts/test_adr_governance.py | |
| - name: Run ADR governance checks | |
| run: python3 scripts/adr-governance.py |