Loading...
Loading...
Diagnose and fix GitHub Actions CI failures. Inspects workflow runs and logs, identifies root causes, implements minimal fixes, and pushes to a fix branch. Use when CI is failing, red, broken, or needs diagnosis.
npx skill4agent add warpdotdev/oz-skills ci-fixgh auth statusgh auth logingh pr view --json statusCheckRollup --jq '.statusCheckRollup[] | select(.conclusion == "FAILURE")'gh run list --branch <branch> --status failure --limit 5
gh run view <run-id> --verbosegh run view <run-id> --log-failedgh run view <run-id> --log --job <job-id>
gh run download <run-id> -D .artifacts/<run-id>git checkout -b ci-fix/<original-branch>
git add -A
git commit -m "fix: resolve CI failure in <job-name>
Co-Authored-By: Warp <agent@warp.dev>"
git push -u origin ci-fix/<original-branch>git checkout ci-fix/<original-branch>
git pull origin <original-branch>
# make fixes
git commit -m "fix: <description>
Co-Authored-By: Warp <agent@warp.dev>"
git pushgh run list --branch ci-fix/<original-branch> --limit 1
gh run watch <new-run-id> --exit-statusgh run rerun <run-id> --failedpull_request_targetpermissions: