Skip to content

Commit

Permalink
Merge pull request #2421 from csantanapr/fix-release-notes-website-ssh
Browse files Browse the repository at this point in the history
fixed release-notes ssh git checkout website pr
  • Loading branch information
k8s-ci-robot committed Feb 11, 2022
2 parents 0d75f07 + 6ac6cd5 commit 4a52960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/krel/cmd/release_notes.go
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ func releaseNotesJSON(repoPath, tag string) (jsonString string, err error) {

// Preclone the repo to be able to read branches and tags
logrus.Infof("Cloning %s/%s", git.DefaultGithubOrg, git.DefaultGithubRepo)
repo, err := git.CloneOrOpenDefaultGitHubRepoSSH(repoPath)
repo, err := git.CloneOrOpenGitHubRepo(repoPath, git.DefaultGithubOrg, git.DefaultGithubRepo, false)
if err != nil {
return "", errors.Wrap(err, "cloning default github repo")
}
Expand Down

0 comments on commit 4a52960

Please sign in to comment.