| name | release-patterns |
| description | PR creation, CI/CD validation, and release coordination patterns. Use when creating pull requests, running pre-PR validation, checking CI status, or coordinating merges. |
Release Patterns Skill
Purpose
Ensure consistent PR creation, CI/CD validation, and release coordination following rebase-first workflow.
When This Skill Applies
- Creating pull requests
- Running pre-PR validation
- Checking CI/CD status
- Coordinating merge timing
Pre-PR Checklist (MANDATORY)
Before creating any PR:
PR Creation
gh pr create \
--title "feat(scope): description [REN-XXX]" \
--body "## Summary
Implements feature as specified in REN-XXX.
## Changes
- Change 1
- Change 2
## Testing
- CI passes
- Manual testing completed"
Merge Strategy
ONLY use rebase merge:
gh pr merge --rebase --delete-branch
gh pr merge --squash
gh pr merge --merge
Reference
- PR Template:
.github/pull_request_template.md
- Workflow Guide:
CONTRIBUTING.md