complete_git_workflow
Automate Git workflows by committing files, creating pull requests, and optionally merging changes. Supports conventional commit formatting and previews via dry run to streamline version control 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 |