mirror of
https://github.com/penpot/penpot.git
synced 2026-08-01 19:06:18 +00:00
820 B
820 B
name, description
| name | description |
|---|---|
| create-pr | Create or update a GitHub PR following Penpot conventions. |
Skill: create-pr
Create or update a GitHub PR. Read and follow:
mem:workflow/creating-prs— title format, description structure, writing principlesmem:workflow/creating-commits— commit type emojis
When to Use
- Creating a new PR from a feature branch
- Updating an existing PR's title or description to match conventions
Prerequisites
ghCLI authenticated (gh auth status)
Commands
Create:
gh pr create --repo penpot/penpot --title "<TITLE>" --body-file /tmp/pr-body.md
Update:
gh pr edit <NUMBER> --repo penpot/penpot --title "<TITLE>" --body-file /tmp/pr-body.md
Verify:
gh pr view <NUMBER> --repo penpot/penpot --json title,body