diff --git a/bridge/github/import.go b/bridge/github/import.go index 6a4c0110c6146c821780590057f01e465baeea40..ea0ccba32b9dc17fdbc1658c944af3fc2fd73e84 100644 --- a/bridge/github/import.go +++ b/bridge/github/import.go @@ -534,6 +534,11 @@ func (gi *githubImporter) ensurePerson(repo *cache.RepoCache, actor *actor) (*ca case "Bot": } + // Name is not necessarily set, fallback to login as a name is required in the identity + if name == "" { + name = string(actor.Login) + } + i, err = repo.NewIdentityRaw( name, email,