-
Notifications
You must be signed in to change notification settings - Fork 0
Create sync.yml for model skill synchronization #106
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 |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| name: Cross Model Skill Sync | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| sync: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Cross Model Skill Sync | ||
| # v1.0.0 | ||
| uses: chrismaz11/Multi-Model-Skill-Sync@f4188af98f2d960acad17921b40a0ae0efeb3879 | ||
|
Comment on lines
+6
to
+12
|
||
| with: | ||
| target-models: codex,claude,gemini | ||
|
|
||
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.
name:is indented whileon:/jobs:are not, which is inconsistent YAML indentation and can cause the workflow to fail parsing/loading in GitHub Actions. Align all top-level keys (name,on,jobs, etc.) to the same indentation level (column 1).