X Tutup
Skip to content

Commit c852db7

Browse files
author
Nate Smith
authored
Merge pull request cli#180 from github/pr-status-green
Print `pr status` numbers in green
2 parents 05b92db + 3346e7b commit c852db7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

command/pr.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ func prCheckout(cmd *cobra.Command, args []string) error {
436436
func printPrs(w io.Writer, prs ...api.PullRequest) {
437437
for _, pr := range prs {
438438
prNumber := fmt.Sprintf("#%d", pr.Number)
439-
fmt.Fprintf(w, " %s %s %s", utils.Yellow(prNumber), truncate(50, replaceExcessiveWhitespace(pr.Title)), utils.Cyan("["+pr.HeadLabel()+"]"))
439+
fmt.Fprintf(w, " %s %s %s", utils.Green(prNumber), truncate(50, replaceExcessiveWhitespace(pr.Title)), utils.Cyan("["+pr.HeadLabel()+"]"))
440440

441441
checks := pr.ChecksStatus()
442442
reviews := pr.ReviewStatus()

0 commit comments

Comments
 (0)
X Tutup