From 0dd0951af4b77da44e7a04c6a7c08d5d31968050 Mon Sep 17 00:00:00 2001 From: Venkat Date: Fri, 13 Mar 2026 18:51:28 +0000 Subject: [PATCH] fix: use case-insensitive comparison for GitHub orgs to fix RBAC #2499 Signed-off-by: Venkat --- connector/github/github.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)...) } }