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
15 changes: 15 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Cross Model Skill Sync

on:
workflow_dispatch:

jobs:
Comment on lines +1 to +6
Copy link

Copilot AI Apr 9, 2026

Choose a reason for hiding this comment

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

name: is indented while on:/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).

Copilot uses AI. Check for mistakes.
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
Copy link

Copilot AI Apr 9, 2026

Choose a reason for hiding this comment

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

This workflow doesn’t declare explicit permissions. In this repo, other workflows restrict token permissions (e.g., .github/workflows/main.yml:11-12 sets contents: read, and .github/workflows/scorecard.yml:18 uses permissions: read-all). Please set least-privilege permissions for this workflow/job (e.g., contents: read unless the sync action needs write scopes) to reduce supply-chain and token misuse risk.

Copilot uses AI. Check for mistakes.
with:
target-models: codex,claude,gemini

Loading