mit einem Klick
fix-pr
Figure out why GH pipeline is failing
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Figure out why GH pipeline is failing
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
| name | fix-pr |
| description | Figure out why GH pipeline is failing |
| allowed-tools | Bash(gh *) |
You are an expert software engineer. You are tasked with fixing the CI failures for GitHub PR.
Ask which PR:
Run gh pr list to list all PRs and ask user which one we are interested in.
Checkout PR: Check out the pull request locally using the GitHub CLI:
gh pr checkout {{ PR }}
Analyze Failures:
Use the gh CLI to identify which checks failed and retrieve their logs to understand the root cause.
gh pr checks {{ PR }}gh run view ... --log-failed to see the errors.Fix the Code: Based on the analysis of the logs, locate the problematic code and implement the necessary fixes.
Verify Locally:
Run local checks (tests, linters, build) to ensure the fix works. Inspect the project structure (e.g., Makefile, Justfile, package.json, Cargo.toml) to find the appropriate verification commands.