Skip to content

Commit d87e6c5

Browse files
author
Yago Carlos Fernandez Gou
committed
Add state in Intake Runner listing
1 parent e23654d commit d87e6c5

File tree

1 file changed

+2
-1
lines changed
  • internal/cmd/beta/intake/runner/list

1 file changed

+2
-1
lines changed

internal/cmd/beta/intake/runner/list/list.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,12 @@ func outputResult(p *print.Printer, outputFormat, projectLabel string, runners [
154154

155155
table := tables.NewTable()
156156

157-
table.SetHeader("ID", "NAME")
157+
table.SetHeader("ID", "NAME", "STATE")
158158
for _, runner := range runners {
159159
table.AddRow(
160160
runner.GetId(),
161161
runner.GetDisplayName(),
162+
runner.GetState(),
162163
)
163164
}
164165
err := table.Display(p)

0 commit comments

Comments
 (0)