Conversation
Signed-off-by: Sebastian Mendel <info@sebastianmendel.de>
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
There was a problem hiding this comment.
Pull request overview
Adds a CI “Skill Validation” job to the existing lint workflow by calling a reusable workflow from netresearch/skill-repo-skill, to validate SKILL.md and related skill/package metadata.
Changes:
- Introduce a new
validatejob to run skill repository validation via reusable workflow.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| validate: | ||
| name: Skill Validation | ||
| uses: netresearch/skill-repo-skill/.github/workflows/validate.yml@main |
There was a problem hiding this comment.
This reusable workflow is referenced by branch name (@main). That makes CI behavior mutable and increases supply-chain risk; it also diverges from the rest of this workflow which pins actions by commit SHA. Pin the reusable workflow to a specific tag or commit SHA (and ideally document the version in a comment) so runs are reproducible.
| uses: netresearch/skill-repo-skill/.github/workflows/validate.yml@main | |
| # validate workflow v1.0.0 | |
| uses: netresearch/skill-repo-skill/.github/workflows/validate.yml@0123456789abcdef0123456789abcdef01234567 |
Summary
Test plan