GitHub Actions CI 모니터링 및 완료 추적. 「PR 체크 상태는?」「CI 결과 보여줘」「테스트 통과했어?」「빌드 성공?」등으로 기동.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add wasabeef/claude-code-cookbook --skill pr-checks --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pr Checks?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/wasabeef-pr-checks-c6a84a94)More formats (shields.io, HTML) on the badges page.
---
description: "GitHub Actions CI 모니터링 및 완료 추적. 「PR 체크 상태는?」「CI 결과 보여줘」「테스트 통과했어?」「빌드 성공?」등으로 기동."
allowed-tools:
- Bash(gh pr checks *)
- Bash(gh run *)
- Bash(gh pr view *)
---
# GitHub Actions CI 모니터링 및 완료 추적
GitHub Actions CI 상황을 모니터링하고 완료까지 추적합니다.
## 사용법
```bash
# CI 체크 상황 확인
gh pr checks
```
## 기본 사용 예시
```bash
# PR 생성 후 CI 확인
gh pr create --title "새 기능 추가" --body "설명"
gh pr checks
```
## Claude 와의 연동
```bash
# CI 확인부터 수정까지의 흐름
gh pr checks
"CI 체크 결과를 분석하고, 실패 항목이 있다면 수정 방법을 제안하세요"
# 수정 후 재확인
git push origin feature-branch
gh pr checks
"수정 후 CI 결과를 확인하고, 문제가 없는지 확인하세요"
```
## 실행 결과 예시
```text
All checks were successful
0 cancelled, 0 failing, 8 successful, 3 skipped, and 0 pending checks
NAME DESCRIPTION ELAPSED URL
○ Build/test (pull_request) 5m20s https://github.com/user/repo/actions/runs/123456789
○ Build/lint (pull_request) 2m15s https://github.com/user/repo/actions/runs/123456789
○ Security/scan (pull_request) 1m30s https://github.com/user/repo/actions/runs/123456789
○ Type Check (pull_request) 45s https://github.com/user/repo/actions/runs/123456789
○ Commit Messages (pull_request) 12s https://github.com/user/repo/actions/runs/123456789
- Deploy Preview (pull_request) https://github.com/user/repo/actions/runs/123456789
- Visual Test (pull_request) https://github.com/user/repo/actions/runs/123456789
```
## 주의사항
- 실패 시 상세 확인
- 모든 체크 완료 후 병합
- 필요에 따라 `gh pr checks` 재실행
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!