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
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ jobs:
severity: error
env:
SHELLCHECK_OPTS: -x

validate:
name: Skill Validation
uses: netresearch/skill-repo-skill/.github/workflows/validate.yml@main
Copy link

Copilot AI Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Suggested change
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

Copilot uses AI. Check for mistakes.