Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/check-skill-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,13 @@ jobs:

- name: Check SKILL.md is in sync
run: npm run check:skill-sync

- name: Validate skill against agentskills.io spec
env:
GH_TOKEN: ${{ github.token }}
run: |
if ! gh skill publish --help >/dev/null 2>&1; then
echo "::notice::gh skill publish not available on this runner (preview feature, gh >= 2.90.0); skipping validation."
exit 0
fi
gh skill publish --dry-run
Loading