This skill should be used when the user asks to "edit workflow", "fix CI", "check cross-compile", "verify binary", "update github actions", "debug CI failure", "verify target triple", or needs help with CI/CD workflow files or cross-compilation.
Edit GitHub Actions workflow files, verify cross-compiled binary architecture, and diagnose CI failures.
See references/target-triples.md for target triple reference, common CI failure patterns,
and the heredoc approach for editing workflow files.
gh run list --limit 5 — find the failing run IDgh run view <id> --log-failed — see only failing stepsop:// refs → clippy -D warningsgh run list --limit 5
gh run view <run-id> --log-failed
gh run watch <run-id>
gh workflow list
gh workflow run <name>
The Edit and Write tools are blocked for .github/workflows/*.yml by a security hook.
Always use a Bash heredoc:
cat > .github/workflows/ci.yml << 'EOF'