in index.go [74:86]
func getOwningGroup(githubOwner string) string {
if githubOwner == "" {
return ""
}
if githubOwner == "elastic/security-external-integrations" || githubOwner == "elastic/security-asset-management" {
return "security"
} else if githubOwner == "elastic/ml-ui" {
return "platform"
} else {
return "observability"
}
}