diff --git a/internal/collector/github/legacy/contributors.go b/internal/collector/github/legacy/contributors.go index 1ceb5cf1..80c0f08c 100644 --- a/internal/collector/github/legacy/contributors.go +++ b/internal/collector/github/legacy/contributors.go @@ -84,6 +84,9 @@ func FetchOrgCount(ctx context.Context, c *githubapi.Client, owner, name string) if login == "" { continue } + if login == "Copilot" { + continue + } if strings.HasSuffix(login, "[bot]") { continue }