Github Modes Complete Pr Workflow

Sub-skill of github-modes: Complete PR Workflow.

vamseeachanta 7a0d14b 498 B Updated

File contents

Complete PR Workflow

Complete PR Workflow

# 1. Create feature branch
git checkout -b feature/new-feature

# 2. Make changes and commit
git add .
git commit -m "feat: Add new feature"
git push -u origin feature/new-feature

# 3. Create PR with full metadata
gh pr create \
  --title "feat: Add new feature" \
  --body "## Summary
- Implements feature X
- Adds tests for Y

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/development/github/github-modes/complete-pr-workflow commit 7a0d14bd1a

Frequently asked questions

npx skillmds@latest add vamseeachanta/github-modes-complete-pr-workflow