From 95b3a78aa9351eaba79483297f20e3842f67ff80 Mon Sep 17 00:00:00 2001 From: Joachim Hill-Grannec Date: Sun, 14 Aug 2016 12:27:53 -0700 Subject: [PATCH] Update to add the name which has a better indication for the label of what build the status is for --- remote/bitbucketserver/bitbucketserver.go | 1 + 1 file changed, 1 insertion(+) diff --git a/remote/bitbucketserver/bitbucketserver.go b/remote/bitbucketserver/bitbucketserver.go index 6012955f..cb4e415f 100644 --- a/remote/bitbucketserver/bitbucketserver.go +++ b/remote/bitbucketserver/bitbucketserver.go @@ -153,6 +153,7 @@ func (c *Config) Status(u *model.User,r *model.Repo,b *model.Build,link string) status := internal.BuildStatus{ State: convertStatus(b.Status), Desc: convertDesc(b.Status), + Name: fmt.Sprintf("Drone #%d - %s", b.Number, b.Branch), Key: "Drone", Url: link, }