Claude-skill-registry github-actions-failure-debugging
Guide for debugging failing GitHub Actions workflows. Use this when asked to debug failing GitHub Actions workflows.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/github-actions-failure-debugging" ~/.claude/skills/majiayu000-claude-skill-registry-github-actions-failure-debugging && rm -rf "$T"
manifest:
skills/data/github-actions-failure-debugging/SKILL.mdsource content
To debug failing GitHub Actions workflows in a pull request, follow this process, using tools provided from the GitHub MCP Server:
- Use the
tool to look up recent workflow runs for the pull request and their statuslist_workflow_runs - Use the
tool to get an AI summary of the logs for failed jobs, to understand what went wrong without filling your context windows with thousands of lines of logssummarize_job_log_failures - If you still need more information, use the
orget_job_logs
tool to get the full, detailed failure logsget_workflow_run_logs - Try to reproduce the failure yourself in your own environment.
- Fix the failing build. If you were able to reproduce the failure yourself, make sure it is fixed before committing your changes.