1
0
Fork 0
A tool to migrate GitHub Repositories to Gitea including all issues
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
gitea-github-migrator/migrations/migratory.go

19 Zeilen
461 B

package migrations
import "code.gitea.io/sdk/gitea"
// Migratory is the context for migrating things from GitHub to Gitea
type Migratory struct {
Client *gitea.Client
AuthUsername string
AuthPassword string
Private bool
NewOwnerID int64
repository *gitea.Repository
// key: github milestone id | value: gitea milestone id
migratedMilestones map[int64]int64
// key: github label id | value: gitea label id
migratedLabels map[int64]int64
}