Skip to content

Commit bc40864

Browse files
authored
When viewing a pipeline, print the corresponding job ids (#108)
1 parent d85cdfd commit bc40864

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/cli/ci.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ func ciViewCmd() *cobra.Command {
157157
if j.Conclusion != "" {
158158
jStatus = j.Conclusion
159159
}
160-
_, _ = fmt.Fprintf(os.Stdout, " %s %s\n", j.Name, jStatus)
160+
_, _ = fmt.Fprintf(os.Stdout, " %d %s %s\n", j.ID, j.Name, jStatus)
161161
}
162162
}
163163

0 commit comments

Comments
 (0)