From 34c3a1df4f39e9d9a10f05a54b6fc9a06a3b4abc Mon Sep 17 00:00:00 2001 From: Andrew Yim Date: Thu, 28 May 2026 01:30:18 +0900 Subject: [PATCH] ci: run verify_skills.py on every push and PR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add .github/workflows/verify-skills.yml — installs pyyaml and runs scripts/verify_skills.py on push and pull_request, failing the build if any skill would not load. GitHub Actions runs it; Gitea Actions also reads .github/workflows/ when Actions is enabled, so it covers both remotes. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/verify-skills.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/verify-skills.yml diff --git a/.github/workflows/verify-skills.yml b/.github/workflows/verify-skills.yml new file mode 100644 index 0000000..64d8e19 --- /dev/null +++ b/.github/workflows/verify-skills.yml @@ -0,0 +1,26 @@ +name: Verify Skills + +# Runs the skill load-verifier on every push and pull request. +# Fails the build if any skill would not load (invalid frontmatter, bad name, +# name collision, orphan dir, or invalid plugin.json). Read-only check. +on: + push: + pull_request: + +jobs: + verify-skills: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + + - name: Install dependencies + run: pip install pyyaml + + - name: Verify all skills load correctly + run: python3 scripts/verify_skills.py