[WIP] Fix failing GitHub Actions job for CLI Completion#42379
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
Hey A couple of things would help before this is ready to merge:
If you’d like to continue with a coding agent:
|
There was a problem hiding this comment.
Pull request overview
This PR updates the status command’s console table rendering so workflow state and time remaining are shown in text output, addressing the failing integration job that expected these values to appear.
Changes:
- Expose
WorkflowStatus.Statusas a visible console table column (headerstate). - Expose
WorkflowStatus.TimeRemainingas a visible console table column (headerremaining).
Show a summary per file
| File | Description |
|---|---|
| pkg/cli/status_command.go | Makes workflow status/state and time remaining visible in the struct-tag-driven console table output. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/1 changed files
- Comments generated: 1
- Review effort level: Low
| WorkflowListItem | ||
| Status string `json:"status" console:"-"` | ||
| TimeRemaining string `json:"time_remaining" console:"-"` | ||
| Status string `json:"status" console:"header:state"` |

Thanks for asking me to work on this. I will get started on it and keep this PR's description up to date as I form a plan and make progress.