Skip to content

compliance: fix SKILL.md frontmatter for skill-checker #38

compliance: fix SKILL.md frontmatter for skill-checker

compliance: fix SKILL.md frontmatter for skill-checker #38

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; }