mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-10 19:11:08 +00:00
Make GitHub status API context congruous
Signed-off-by: Fabio Rapposelli <fabio@vmware.com>
This commit is contained in:
parent
7075cf02a3
commit
9eb4161750
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ func (g *Github) Status(u *model.User, r *model.Repo, b *model.Build, link strin
|
||||||
status := getStatus(b.Status)
|
status := getStatus(b.Status)
|
||||||
desc := getDesc(b.Status)
|
desc := getDesc(b.Status)
|
||||||
data := github.RepoStatus{
|
data := github.RepoStatus{
|
||||||
Context: github.String("Drone"),
|
Context: github.String("continuous-integration/drone"),
|
||||||
State: github.String(status),
|
State: github.String(status),
|
||||||
Description: github.String(desc),
|
Description: github.String(desc),
|
||||||
TargetURL: github.String(link),
|
TargetURL: github.String(link),
|
||||||
|
|
Loading…
Reference in a new issue