chore(catalog): regenerate catalog and stats after skill/capability u… #19
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: Validate Registry | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: python -m pip install --upgrade pip pyyaml | |
| - name: Run registry validator | |
| run: python tools/validate_registry.py | |
| - name: Generate catalog | |
| run: python tools/generate_catalog.py | |
| - name: Generate governance guardrails report | |
| run: | | |
| python tools/governance_guardrails.py \ | |
| --fail-on-high-risk-overlap-channels community,official | |
| - name: Generate capability governance guardrails report | |
| run: python tools/capability_governance_guardrails.py | |
| - name: Enforce capability sunset policy | |
| run: python tools/enforce_capability_sunset.py | |
| - name: Check catalog is up to date | |
| run: git diff --exit-code -- catalog |