Fixing #5624 - Removing unneeded hint and additional new line (#5642)

This commit is contained in:
Curtis Tarr 2022-05-18 07:32:00 +01:00 committed by GitHub
parent 539b150833
commit bec49152cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 10 deletions

View file

@ -126,8 +126,6 @@ func listRun(opts *ListOptions) error {
cs := opts.IO.ColorScheme()
out := opts.IO.Out
if !opts.PlainOutput {
tp.AddField("STATUS", nil, nil)
tp.AddField("NAME", nil, nil)
@ -170,10 +168,5 @@ func listRun(opts *ListOptions) error {
return err
}
if !opts.PlainOutput {
fmt.Fprintln(out)
fmt.Fprintln(out, "For details on a run, try: gh run view <run-id>")
}
return nil
}

File diff suppressed because one or more lines are too long