package mutator import ( "context" "github.com/databricks/cli/bundle" "github.com/databricks/cli/libs/git" "github.com/databricks/cli/libs/log" ) type loadGitDetails struct{} func LoadGitDetails() *loadGitDetails { return &loadGitDetails{} } func (m *loadGitDetails) Name() string { return "LoadGitDetails" } func (m *loadGitDetails) Apply(ctx context.Context, b *bundle.Bundle) error { // Load relevant git repository repo, err := git.NewRepository(b.Config.Path) if err != nil { return err } // load branch name if undefined if b.Config.Bundle.Git.Branch == "" { branch, err := repo.CurrentBranch() if err != nil { log.Warnf(ctx, "failed to load current branch: %s", err) } else { b.Config.Bundle.Git.Branch = branch } } // load commit hash if undefined if b.Config.Bundle.Git.Commit == "" { commit, err := repo.LatestCommit() if err != nil { log.Warnf(ctx, "failed to load latest commit: %s", err) } else { b.Config.Bundle.Git.Commit = commit } } // load origin url if undefined if b.Config.Bundle.Git.OriginURL == "" { remoteUrl := repo.OriginUrl() b.Config.Bundle.Git.OriginURL = remoteUrl } return nil }