Monitorar GitHub Actions CI e rastrear até conclusão. Ativa com "status dos checks do PR?", "testes passaram?", "build passou?".
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-c6e99494)More formats (shields.io, HTML) on the badges page.
---
description: 'Monitorar GitHub Actions CI e rastrear até conclusão. Ativa com "status dos checks do PR?", "testes passaram?", "build passou?".'
allowed-tools:
- Bash(gh pr checks *)
- Bash(gh run *)
- Bash(gh pr view *)
---
# Monitorar GitHub Actions CI e rastrear até conclusão
Monitora o status do CI do GitHub Actions e acompanha até a conclusão.
## Uso
```bash
# Verificar status dos checks do CI
gh pr checks
```
## Exemplo Básico
```bash
# Verificação do CI após criação de PR
gh pr create --title "Adição de nova funcionalidade" --body "descrição"
gh pr checks
```
## Integração com Claude
```bash
# Fluxo desde verificação do CI até correção
gh pr checks
"Analise os resultados dos checks do CI e proponha métodos de correção se houver itens com falha"
# Reverificação após correção
git push origin feature-branch
gh pr checks
"Verifique os resultados do CI após correção e confirme que não há problemas"
```
## Exemplo de Resultado de Execução
```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
```
## Observações
- Em caso de falha, verificar detalhes
- Aguardar conclusão de todos os checks antes do merge
- Reexecutar `gh pr checks` conforme necessário
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!