diff --git a/connector/github/github.go b/connector/github/github.go index eb19f778..68948af2 100644 --- a/connector/github/github.go +++ b/connector/github/github.go @@ -706,7 +706,7 @@ func (c *githubConnector) teamsForOrg(ctx context.Context, client *http.Client, } for _, t := range teams { - if t.Org.Login == orgName { + if strings.EqualFold(t.Org.Login, orgName) { groups = append(groups, c.teamGroupClaims(t)...) } }