EN DE
← ← Zurück zur Übersicht

github-pr-workflow

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

Beschreibung

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

Relevanz für unsere Projekte

Kompletter PR-Lebenszyklus: Branch, Commits, PR öffnen, CI abwarten, Mergen, Aufräumen.

Ablauf

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

← ← Zurück zur Übersicht