Install
openclaw skills install github-actions-troubleshootingTroubleshoot GitHub Actions workflows, particularly for Go projects. Diagnose failing workflows, distinguish between code and environment issues, interpret logs, and apply fixes for common CI/CD problems.
openclaw skills install github-actions-troubleshootingUse the gh CLI and Git to diagnose and fix GitHub Actions workflow failures, particularly for Go projects. This skill helps identify whether failures are due to code issues or environment/configuration problems.
Check the status of recent workflow runs:
gh run list --repo owner/repo --limit 10
View details of a specific failing workflow:
gh run view <run-id> --repo owner/repo
Get logs for failed jobs only:
gh run view <run-id> --repo owner/repo --log-failed
golangci-lint run --disable-all --enable=gofmt for basic syntax checkinggo mod tidy to resolve dependency conflictsCheck specific workflow job logs:
gh run view --job <job-id> --repo owner/repo
Download workflow artifacts for inspection:
gh run download <run-id> --repo owner/repo
brew install gh