diff --git a/pkg/queue/queue.go b/pkg/queue/queue.go index 22a1b1da..db49944c 100644 --- a/pkg/queue/queue.go +++ b/pkg/queue/queue.go @@ -225,7 +225,11 @@ func updateGitHubStatus(repo *Repo, commit *Commit) error { } client := github.New(user.GithubToken) - return client.Repos.CreateStatus(repo.Owner, repo.Name, status, settings.URL().String(), message, commit.Hash) + + var url string + url = settings.URL().String() + "/" + repo.Slug + "/commit/" + commit.Hash + + return client.Repos.CreateStatus(repo.Owner, repo.Name, status, url, message, commit.Hash) } type bufferWrapper struct {