name: pr description: Automates the branch creation, commit, and PR submission process
PR Skill
This skill automates the process of submitting a Pull Request.
Steps
- Create a new branch:
git checkout -b <branch_name>(Usepr/M{n}-...for roadmap orfeature/.../fix/...for generic) - Stage and commit changes:
git add -A; git commit -m "<commit_message>"(UseM{n}: <area> - <action>for roadmap ortype: descriptionfor generic) - Create
.pr-body.mdusing the template in./resources/pr-body-template.md - Push the branch to origin:
git push -u origin HEAD - Create the PR using GitHub CLI:
gh pr create --title "<commit_message>" --body-file .pr-body.md