EN DE
← ← Back to Index

github-pr-workflow

github › github-pr-workflow v1.1.0
GitHub Pull-Requests CI/CD Git Automation Merge

Description

GitHub PR lifecycle: branch, commit, open, CI, merge.

Relevance to Our Projects

Complete PR lifecycle: branch, commits, open PR, wait for CI, merge, cleanup.

Pipeline

1🌿 Branch erstellen — Feature-Branch von main
2💾 Commits — Inkrementell mit klaren Nachrichten
3🔄 PR öffnen — Titel, Beschreibung, Reviewer
4✅ CI abwarten — Tests, Linting, Build
5🔀 Mergen — Squash/Rebase/Merge-Commit
6🧹 Aufräumen — Branch löschen

SKILL.md Preview

# GitHub Pull Request Workflow

Complete guide for managing the PR lifecycle. Each section shows the `gh` way first, then the `git` + `curl` fallback for machines without `gh`.

## Prerequisites

- Authenticated with GitHub (see `github-auth` skill)
- Inside a git repository with a GitHub remote

### Quick Auth Detection

```bash
# Determine which method to use throughout this workflow
if command -v gh &>/dev/null && gh auth status &>/dev/null; then
  AUTH="gh"
else
  AUTH="git"
  # Ensure we ha

← ← Back to Index