github-pr-workflow

Manage GitHub pull request workflows from branch creation to CI-verified merge.

126|11|Updated Feb 24, 2026
One-click install
npx skills add https://github.com/HybridAIOne/hybridclaw --skill github-pr-workflow-hybridaione
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-pr-workflow
Source: https://github.com/HybridAIOne/hybridclaw/tree/main/skills/github-pr-workflow
Command: npx skills add https://github.com/HybridAIOne/hybridclaw --skill github-pr-workflow-hybridaione

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It prevents slow, error-prone pull request delivery by guiding the complete branch-to-merge workflow with consistent checks and review handling.

Core Features & Use Cases

  • End-to-end PR loop: Creates branches, commits, pushes changes, opens or updates PRs, and merges using the repository’s preferred strategy.
  • CI and merge readiness guardrails: Verifies GitHub CLI authentication, monitors CI results, and avoids merging when checks are red unless explicitly accepted.
  • Review feedback iteration: Uses PR discussions as the source of truth and recommends small, focused follow-up commits based on comment groups.

Use case: You’re implementing a feature in a team repo and need to ensure CI passes, required reviewers approve, and the PR is ready to merge without surprises.

Quick Start

Tell the assistant to run the github-pr-workflow to create a feature branch, open a pull request, check CI status, and merge only when the PR is green and approved.

Frequently Asked Questions about github-pr-workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate a GitHub pull request workflow from branch creation to merge?

To automate a GitHub pull request workflow, you can use an end-to-end process that creates feature branches, commits changes, opens PRs, monitors CI status, and merges safely. This ensures consistent checks and review handling before changes are shipped.

How does CI status verification work before merging a GitHub pull request?

CI status verification works by interrogating CI results through the GitHub CLI and enforcing merge only when branch checks pass. This prevents merging when checks are red, avoiding unexpected build failures in the main branch.

What is the best way to handle code review feedback in a pull request?

Handling code review feedback involves using PR discussions as the source of truth and recommending small, focused follow-up commits based on comment groups. This approach iterates on review feedback systematically before merging.

Do I need GitHub CLI authentication to manage pull requests and run CI checks?

Yes, GitHub CLI authentication is required to manage pull requests and run CI checks. The workflow validates your GitHub CLI authentication before executing deterministic git steps for syncing, committing, and opening PRs.

Can I merge a pull request when CI checks are failing?

The workflow enforces merge only when branch checks pass and review requirements are met, avoiding merges when checks are red. However, it can be explicitly accepted to bypass these guardrails if you choose to override the safety mechanisms.

What are the limitations of automating git workflow steps for pull requests?

Limitations of automating git workflow steps include reliance on GitHub CLI authentication and deterministic syncing. The workflow is designed for teams using GitHub CLI, so it may not apply if your repository uses a different version control platform or lacks CI integration.