complete_git_workflow
Automate Git workflows by committing changes, pushing code, creating pull requests, and optionally merging. Supports conventional commits, dry runs, and handles branch management for streamlined development processes.
Instructions
Execute complete Git workflow: commit, push, create PR, and optionally merge
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autoMerge | No | Automatically merge PR after creation | |
baseBranch | No | Base branch | main |
branch | No | Feature branch name | |
commitMessage | Yes | Commit message (conventional format) | |
dryRun | No | Preview without executing | |
files | No | Files to commit | |
prBody | Yes | Pull request description | |
prTitle | Yes | Pull request title | |
workingDir | No | Working directory path |