| 12345678910111213141516171819202122232425262728293031323334 |
- name: Validate Plugins
- on:
- pull_request:
- paths:
- - '.claude-plugin/**'
- - '*/.claude-plugin/**'
- - '*/agents/**'
- - '*/skills/**'
- - '*/commands/**'
- push:
- branches: [main]
- paths:
- - '.claude-plugin/**'
- permissions:
- contents: read
- jobs:
- validate:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - uses: anthropics/claude-plugins-community/.github/actions/validate-plugins@f846a0bcb0e721b1f93d60e8b73e91dafc4a1e87
- with:
- marketplace-path: .claude-plugin/marketplace.json
- # Official curated marketplace: SHA-pin (I5) is a HARD error.
- # I8/I11 are warnings until the 15 known vendored-path/name issues
- # are cleaned up (see PR body); tighten to "I1 I3" after.
- warn-invariants: "I1 I3 I8 I11"
- claude-cli-version: latest
|