(review *TaskRunReviewRecord)
| 3464 | } |
| 3465 | |
| 3466 | func taskRunReviewBundle(review *TaskRunReviewRecord) outputBundle { |
| 3467 | return outputBundle{ |
| 3468 | jsonValue: *review, |
| 3469 | human: func() (string, error) { |
| 3470 | return renderHumanSection("Task Run Review", taskRunReviewRows(review)), nil |
| 3471 | }, |
| 3472 | toon: func() (string, error) { |
| 3473 | return renderJSONPreview(review) |
| 3474 | }, |
| 3475 | } |
| 3476 | } |
| 3477 | |
| 3478 | func taskRunReviewVerdictBundle(record *TaskRunReviewVerdictRecord) outputBundle { |
| 3479 | return outputBundle{ |
no test coverage detected