Color brackets

This commit is contained in:
Corey Johnson 2019-10-15 10:53:35 -07:00
parent b4d28f11b0
commit 8d719999a1

View file

@ -70,7 +70,7 @@ func ExecutePr() error {
func printPrs(prs ...api.PullRequest) {
for _, pr := range prs {
fmt.Printf(" #%d %s [%s]\n", pr.Number, truncateTitle(pr.Title), aurora.Cyan(pr.HeadRefName))
fmt.Printf(" #%d %s %s\n", pr.Number, truncateTitle(pr.Title), aurora.Cyan("["+pr.HeadRefName+"]"))
}
}