Skip to content

Commit 69bcd9c

Browse files
robertherberclaude
andcommitted
Update validate-plugins workflow for new structure
Update paths and validation commands to match the new root-level plugin structure. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f14741d commit 69bcd9c

1 file changed

Lines changed: 16 additions & 4 deletions

File tree

.github/workflows/validate-plugins.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,22 @@ name: Validate Claude Code Plugins
33
on:
44
push:
55
paths:
6-
- 'skills/**'
6+
- '.claude-plugin/**'
7+
- 'biome/**'
8+
- 'bun/**'
9+
- 'general/**'
10+
- 'kysely-sql/**'
11+
- 'planning/**'
12+
- 'typescript/**'
713
pull_request:
814
paths:
9-
- 'skills/**'
15+
- '.claude-plugin/**'
16+
- 'biome/**'
17+
- 'bun/**'
18+
- 'general/**'
19+
- 'kysely-sql/**'
20+
- 'planning/**'
21+
- 'typescript/**'
1022

1123
jobs:
1224
validate:
@@ -18,11 +30,11 @@ jobs:
1830
run: npm install -g @anthropic-ai/claude-code
1931

2032
- name: Validate marketplace
21-
run: claude plugin validate skills/
33+
run: claude plugin validate .
2234

2335
- name: Validate individual plugins
2436
run: |
25-
for plugin in skills/plugins/*/; do
37+
for plugin in biome bun general kysely-sql planning typescript; do
2638
echo "=== Validating $plugin ==="
2739
claude plugin validate "$plugin"
2840
done

0 commit comments

Comments
 (0)