You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
611 B
21 lines
611 B
package migrations
|
|
|
|
import (
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/google/go-github/github"
|
|
)
|
|
|
|
// Repository migrates a GitHub Repository to a Gitea Repository without migrating issues etc.
|
|
func (m *Migratory) Repository(gr *github.Repository) (*gitea.Repository, error) {
|
|
var err error
|
|
m.repository, err = m.Client.MigrateRepo(gitea.MigrateRepoOption{
|
|
Description: gr.GetDescription(),
|
|
AuthPassword: m.AuthPassword,
|
|
AuthUsername: m.AuthUsername,
|
|
CloneAddr: gr.GetCloneURL(),
|
|
RepoName: gr.GetName(),
|
|
UID: m.NewOwnerID,
|
|
Private: m.Private,
|
|
})
|
|
return m.repository, err
|
|
}
|
|
|