بنقرة واحدة
ship
Commit, create PR, wait for CI, and merge
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Commit, create PR, wait for CI, and merge
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | ship |
| description | Commit, create PR, wait for CI, and merge |
Commit current changes, open a PR, wait for CI to pass, then squash-merge.
Run git status and git diff --stat to see what's changed. Run git log --oneline -5 for commit message style.
Draft a concise commit message based on the changes. Stage relevant files (not .env, credentials, etc.) and commit.
Create a feature branch if not already on one (use a descriptive name based on the changes). Push with -u.
Create a PR with gh pr create — short title, summary bullets, test plan.
Wait for CI: gh pr checks <pr-number> --watch
Once CI passes, merge: gh pr merge <pr-number> --squash --delete-branch
If any step fails, stop and report the error.