415 Commit Push Pr B2b3d4bf

Commit staged changes, push to remote, and create a pull request

tools-only Updated 7 repo stars

File contents

Context

  • Current branch: !git branch --show-current
  • Default branch: !git remote show origin 2>/dev/null | grep 'HEAD branch' | cut -d' ' -f5 || echo "main"
  • Git status: !git status --short
  • Staged diff: !git diff --cached
  • Unstaged diff: !git diff
  • Commits ahead of origin: !git log @{u}..HEAD --oneline 2>/dev/null || echo "No upstream branch"
  • Recent commits for style: !git log --oneline -5

Task

Execute the full git workflow:

  1. Commit: If there are staged changes, create a conventional commit
  2. Push: Push the current branch to origin (set upstream if needed)
  3. PR: Create a pull request using gh pr create
    • Auto-generate title from commits
    • Include a summary of changes in the PR body
    • Link any related issues mentioned in commits

If any step fails, stop and report the issue.

$ARGUMENTS

tools-only/X-Skills/tree/main/automation/workflow/415-commit-push-pr_b2b3d4bf commit 44103fb595

Frequently asked questions

npx skillmds@latest add tools-only/415-commit-push-pr-b2b3d4bf