Make humanize findings accurate and actionable #271
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: Validate Plugins | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "plugins/**" | |
| - ".claude-plugin/**" | |
| - ".codex-plugin/**" | |
| - ".cursor-plugin/**" | |
| - ".agents/**" | |
| - ".github/scripts/**" | |
| - ".github/workflows/validate-plugins.yml" | |
| - "CLAUDE.md" | |
| - "AGENTS.md" | |
| - "GEMINI.md" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "plugins/**" | |
| - ".claude-plugin/**" | |
| - ".codex-plugin/**" | |
| - ".cursor-plugin/**" | |
| - ".agents/**" | |
| - ".github/scripts/**" | |
| - ".github/workflows/validate-plugins.yml" | |
| - "CLAUDE.md" | |
| - "AGENTS.md" | |
| - "GEMINI.md" | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Set up Node | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 22 | |
| - name: Install dependencies | |
| run: pip install pyyaml | |
| - name: Validate plugins | |
| env: | |
| PR_BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
| run: python .github/scripts/validate_plugins.py | |
| - name: Test simplify guard | |
| run: python .github/scripts/test_simplify_guard.py |