Loading...
Loading...
Creates a Pull Request from current changes for OneKey app-monorepo. Use when user wants to create PR, submit changes, or merge feature branch. Handles branch creation, commit, push, and PR creation workflow.
npx skill4agent add onekeyhq/app-monorepo 1k-create-pr| Step | Action | Commands |
|---|---|---|
| 1 | Check status | |
| 2 | Create branch (if on x) | |
| 3 | Stage & commit | |
| 4 | Push to remote | |
| 5 | Create PR | |
| 6 | Enable auto-merge | |
git status
git branch --show-currentxfeat/fix/refactor/chore/git checkout -b <branch-name>git add .
git commit -m "<type>: <description>"git push -u origin <branch-name>gh pr create --base x --title "<title>" --body "<description>"OK-{number}fix: description(OK-49185)gh pr update-branch <PR_NUMBER>
gh pr merge <PR_NUMBER> --auto --squashopen <PR_URL>xtype: description