Install
openclaw skills install github-pr-automation-proAutomate GitHub pull request workflows including creation, review, merging, and monitoring. Handles PR templates, auto-labeling, CI/CD integration, and review automation. Use when users need to create PRs with proper formatting and templates, automate PR reviews and approvals, monitor PR status and CI checks, auto-merge PRs based on conditions, batch process multiple PRs, or track PR metrics and performance.
openclaw skills install github-pr-automation-proStreamline GitHub pull request workflows with intelligent automation for creation, review, and merging.
node scripts/create_pr.js --branch feature/new-api --title "Add new API endpoint" --template feature
node scripts/monitor_pr.js --pr 123
Returns CI status, review status, and merge readiness.
node scripts/auto_merge.js --repo owner/repo --conditions "ci_passed,reviews_approved"
node scripts/batch_review.js --repo owner/repo --label "ready-for-review" --action approve
PR automation rules are defined in references/automation_rules.json:
{
"auto_label": {
"bug": ["fix", "bugfix"],
"feature": ["feat", "feature"],
"docs": ["docs", "documentation"]
},
"auto_merge": {
"enabled": true,
"conditions": ["ci_passed", "reviews_approved", "no_conflicts"]
},
"reviewers": {
"backend": ["@backend-team"],
"frontend": ["@frontend-team"]
}
}
Store templates in references/pr_templates/:
feature.md - Feature PRsbugfix.md - Bug fixeshotfix.md - Urgent fixesdocs.md - Documentation updatesThis skill uses gh CLI for GitHub operations. Ensure it's installed and authenticated:
gh auth status