gh-check-ci-status

Check GitHub pull request CI status and retrieve failure logs.

18|5|Updated Nov 3, 2025
One-click install
npx skills add https://github.com/mvillmow/ml-odyssey --skill gh-check-ci-status
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gh-check-ci-status
Source: https://github.com/mvillmow/ml-odyssey/tree/main/.claude/skills/gh-check-ci-status
Command: npx skills add https://github.com/mvillmow/ml-odyssey --skill gh-check-ci-status

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires github-cli.

What problem does it solve? This Skill streamlines the process of checking GitHub CI/CD statuses for pull requests, quickly identifying passing checks or pinpointing failures without navigating the UI. It automates status retrieval, saving valuable development time.

Core Features & Use Cases:

  • Quick Status Overview: Get a summary of all checks for a given PR, including build, test, and lint statuses.
  • Detailed Logs: Access logs for failed checks directly from the command line, accelerating debugging.
  • Use Case: Before merging a pull request, use this skill to quickly confirm all CI checks are passing. If a check fails, instantly retrieve the logs to investigate the failure, ensuring a smooth and reliable merge.

Quick Start: Use the gh-check-ci-status skill to check the CI status for pull request number 42.

Frequently Asked Questions about gh-check-ci-status

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check CI/CD status for a GitHub pull request from the command line?

Use gh pr checks to retrieve CI status for a pull request. This command displays all checks—build, test, lint—and their current status without navigating the GitHub UI, helping you verify PR readiness before merge.

How do I get logs for a failed CI check in GitHub?

Run gh pr checks to identify failed checks, then use gh pr view to access detailed information and logs. This accelerates debugging by retrieving failure details directly from the terminal.

Can I monitor pending CI checks on a pull request?

Yes. gh pr checks displays pending, passing, and failed checks across GitHub workflows. You can track long-running checks and rerun failed checks without leaving the command line.

What do I need to use GitHub CLI commands to check PR status?

You need GitHub CLI (gh) installed and configured with repository access. The Skill uses gh pr checks and gh pr view to parse statusCheckRollup data and retrieve check results.

How do I rerun failed CI checks on a pull request?

After identifying failed checks with gh pr checks, you can rerun them directly from the command line using GitHub CLI. This enables faster iteration without returning to the UI.