---
name: PR Checks
slug: pr-checks
category: DevOps
description: PR Checks monitors GitHub Actions CI status and tracks pull request checks until they complete, so you can wait for all checks to pass before merging.
github: "https://github.com/wasabeef/claude-code-cookbook/tree/main/plugins/en/skills/pr-checks"
language: Shell
stars: 1131
forks: 111
install: "npx degit https://github.com/wasabeef/claude-code-cookbook/tree/main/plugins/en/skills/pr-checks ~/.claude/skills/pr-checks"
installs_to: ~/.claude/skills/pr-checks
source_path: plugins/en/skills/pr-checks/SKILL.md
collection_size: 25
category_size: 798
collection_url: "https://dirskills.com/collections/wasabeef/claude-code-cookbook"
added: 2026-08-20T07:56:20.066Z
last_synced: 2026-08-20T07:56:20.066Z
canonical_url: "https://dirskills.com/skills/pr-checks"
---

# PR Checks

PR Checks monitors GitHub Actions CI status and tracks pull request checks until they complete, so you can wait for all checks to pass before merging.

**Install:**

```bash
npx degit https://github.com/wasabeef/claude-code-cookbook/tree/main/plugins/en/skills/pr-checks ~/.claude/skills/pr-checks
```

## README

# Monitor GitHub Actions CI and track to completion

Monitors GitHub Actions CI status and tracks until completion.

## Usage

```bash
# Check CI status
gh pr checks
```

## Basic Examples

```bash
# Check CI after creating PR
gh pr create --title "Add new feature" --body "Description"
gh pr checks
```

## Collaboration with Claude

```bash
# Flow from CI check to correction
gh pr checks
"Analyze CI check results and suggest fixes if there are failures"

# Recheck after correction
git push origin feature-branch
gh pr checks
"Check CI results after correction to confirm no issues"
```

## Example Execution Results

```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
```

## Notes

- Check details when failed
- Wait for all checks to complete before merging
- Re-run `gh pr checks` as needed
