Skip to content
Closed
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
17 changes: 17 additions & 0 deletions .github/workflows/hol-skill-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: HOL Skill Validate
on:
push:
branches: [main, master]
pull_request:
jobs:
validate-skill:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Validate skill package
uses: hashgraph-online/skill-publish@8f3c91d7d4cde7b104549e5f0cccdbb4cd7ee58d # v1 # v1
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Duplicated version comment on action reference line

Low Severity

The uses line has a duplicated version comment: # v1 # v1. This appears to be an accidental double-paste of the version annotation.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 04c9596. Configure here.

with:
skill-dir: .
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Wrong skill-dir points to root, missing skill files

High Severity

The skill-dir is set to . (repo root), but the repository has no SKILL.md or skill.json at the root. The actual SKILL.md files live under skills/xcodebuildmcp/ and skills/xcodebuildmcp-cli/. Additionally, there is no skill.json file anywhere in the repository, which the skill-publish action requires alongside SKILL.md for validation. This workflow will always fail.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 78e4fc7. Configure here.

mode: validate