mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
39 lines
1.4 KiB
Go
39 lines
1.4 KiB
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/SAP/jenkins-library/pkg/log"
|
||
|
"github.com/SAP/jenkins-library/pkg/telemetry"
|
||
|
"github.com/google/go-github/v32/github"
|
||
|
|
||
|
"github.com/pkg/errors"
|
||
|
|
||
|
piperGithub "github.com/SAP/jenkins-library/pkg/github"
|
||
|
)
|
||
|
|
||
|
type gitHubCommitStatusRepositoriesService interface {
|
||
|
CreateStatus(ctx context.Context, owner, repo, ref string, status *github.RepoStatus) (*github.RepoStatus, *github.Response, error)
|
||
|
}
|
||
|
|
||
|
func githubSetCommitStatus(config githubSetCommitStatusOptions, telemetryData *telemetry.CustomData) {
|
||
|
ctx, client, err := piperGithub.NewClient(config.Token, config.APIURL, "")
|
||
|
if err != nil {
|
||
|
log.Entry().WithError(err).Fatal("Failed to get GitHub client")
|
||
|
}
|
||
|
|
||
|
err = runGithubSetCommitStatus(ctx, &config, telemetryData, client.Repositories)
|
||
|
if err != nil {
|
||
|
log.Entry().WithError(err).Fatal("GitHub status update failed")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func runGithubSetCommitStatus(ctx context.Context, config *githubSetCommitStatusOptions, telemetryData *telemetry.CustomData, ghRepositoriesService gitHubCommitStatusRepositoriesService) error {
|
||
|
status := github.RepoStatus{State: &config.Status, TargetURL: &config.TargetURL}
|
||
|
_, _, err := ghRepositoriesService.CreateStatus(ctx, config.Owner, config.Repository, config.CommitID, &status)
|
||
|
if err != nil {
|
||
|
return errors.Wrapf(err, "failed to set status '%v' on commitId '%v'", config.Status, config.CommitID)
|
||
|
}
|
||
|
return nil
|
||
|
}
|