// updateStatus updates the given commit with a new status. func (b *statusUpdaterBuilder) updateStatus(w io.Writer, opts BuildOptions, status string, description string) error { context := Context parts := strings.SplitN(opts.Repository, "/", 2) var desc *string if description != "" { desc = &description } var url *string if status == "success" || status == "failure" || status == "error" { if w, ok := w.(Logger); ok { url = github.String(w.URL()) } } _, _, err := b.github.CreateStatus(parts[0], parts[1], opts.Sha, &github.RepoStatus{ State: &status, Context: &context, Description: desc, TargetURL: url, }) return err }