What problem does it solve?
This Skill automates monitoring of GitHub Actions CI status after pushing changes to a repository that contains a .github/workflows directory, providing proactive visibility into builds and failures.
Core Features & Use Cases
- CI status monitoring: Continuously observe the latest workflow run and report status updates.
- Failure investigation: Retrieve logs for failed runs and guide debugging with actionable insights.
- Use Case: After a push, get a quick health check of the CI pipeline and identify failing steps without leaving your terminal.
Quick Start
Ensure GitHub CLI (gh) is installed and you are in a git repository on the target branch.
Run: bash scripts/check_ci.sh --wait 300
To view the latest run details or logs, use:
gh run list --branch $(git branch --show-current) --limit 1
gh run view <run-id> --log-failed