<< All versions
Skill v1.0.1
currentAutomated scan100/100robbyt/claude-skills/actions
1 files
──Details
PublishedMay 28, 2026 at 11:02 AM
Content Hashsha256:9da134b5e1371fd2...
Git SHA8415549497b2
Bump Typepatch
──Files
Files (1 file, 1.4 KB)
SKILL.md1.4 KBactive
SKILL.md · 72 lines · 1.4 KB
version: "1.0.1" name: actions description: GitHub Actions workflow management using GitHub CLI. Trigger when user wants to check CI status ("check CI", "is the build passing"), view workflow runs ("show recent runs", "view action logs"), watch running workflows ("watch CI"), or rerun failed workflows ("rerun the build").
GitHub Actions
Monitor and manage GitHub Actions workflows with the gh CLI.
Prerequisites
GitHub CLI must be installed and authenticated:
bash
gh auth status
Quick Reference
bash
gh run list # List recent runsgh run view 789 # View run detailsgh run view 789 --log # View run logsgh run watch 789 # Watch running workflowgh run rerun 789 # Rerun workflow
List Workflow Runs
bash
gh run listgh run list --limit 10gh run list --workflow ci.ymlgh run list --status failuregh run list --branch main
View Run Details
bash
gh run view 789gh run view 789 --json status,conclusion,jobs
View Run Logs
bash
gh run view 789 --loggh run view 789 --log-failed # Only failed job logs
Watch Running Workflow
bash
gh run watch 789gh run watch 789 --exit-status # Exit with workflow status code
Rerun Workflows
bash
gh run rerun 789gh run rerun 789 --failed # Rerun only failed jobs
List Workflows
bash
gh workflow listgh workflow view ci.yml