Fixup back url in commit status
This commit is contained in:
parent
bb90a492cf
commit
79ccd56960
1 changed files with 5 additions and 1 deletions
|
@ -225,7 +225,11 @@ func updateGitHubStatus(repo *Repo, commit *Commit) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
client := github.New(user.GithubToken)
|
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 {
|
type bufferWrapper struct {
|
||||||
|
|
Loading…
Reference in a new issue