-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add skill validation CI job #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -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 | ||||||
|
||||||
| uses: netresearch/skill-repo-skill/.github/workflows/validate.yml@main | |
| uses: netresearch/skill-repo-skill/.github/workflows/validate.yml@v1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The validate job does not explicitly define permissions. When calling a reusable workflow, permissions are not inherited by default from the caller workflow. If the reusable workflow needs to access repository contents or other resources, you may need to explicitly pass permissions using the 'permissions' key at the job level, or ensure the reusable workflow has 'permissions: read-all' or specific permissions defined. Verify whether the netresearch/skill-repo-skill validate.yml workflow requires any specific permissions.