| name | check-github-actions |
| description | Check the status of GitHub Action runs and runners to diagnose CI/CD issues. |
Check GitHub Actions Skill
Use this skill to investigate the state of GitHub Action workflows, jobs, and runners for the repository.
Common Tasks
List Recent Workflow Runs
To see the most recent runs for all workflows or a specific branch:
gh run list --repo stsquad/buildroot-asset --limit 10
View Status of a Specific Run
To see the status and jobs of a particular run:
gh run view <run_id> --repo stsquad/buildroot-asset
View Logs for a Failed Run
If a run failed, you can view the logs for the failed jobs:
gh run view <run_id> --log --repo stsquad/buildroot-asset
Check Workflow Dispatch Inputs
To see what inputs were used for a workflow_dispatch run:
gh run view <run_id> --json inputs --repo stsquad/buildroot-asset
Rerun a Failed Run
If you believe a failure was transient:
gh run rerun <run_id> --repo stsquad/buildroot-asset
Repository Information
Upstream Repository: https://github.com/stsquad/buildroot-asset