Skip to content

feat: P0-P1 fusion enhancement #18

feat: P0-P1 fusion enhancement

feat: P0-P1 fusion enhancement #18

Workflow file for this run

name: Repository Health
on:
pull_request:
push:
branches: [ main, master ]
permissions:
contents: read
jobs:
repository-health:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Verify governance files
run: |
test -f README.md || test -f SKILL.md || { echo "README.md or SKILL.md is required"; exit 1; }
test -f LICENSE || { echo "LICENSE is required"; exit 1; }
test -f .github/CODEOWNERS || { echo ".github/CODEOWNERS is required"; exit 1; }