We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74e94b0 commit 507747fCopy full SHA for 507747f
1 file changed
services/apps/packages_worker/src/security-contacts/extractors/registry/rubygems.ts
@@ -52,11 +52,13 @@ export function mapRubygemsOwners(
52
const key = email.toLowerCase()
53
if (seen.has(key)) continue
54
seen.add(key)
55
- const handle = typeof o.handle === 'string' ? o.handle : undefined
+ // RubyGems handles are not GitHub logins — stored as `name`, not `handle`, so
56
+ // identityLinkMerge (reconcile.ts) never cross-links them to a github-handle contact.
57
+ const name = typeof o.handle === 'string' ? o.handle : undefined
58
contacts.push({
59
channel: 'email',
60
value: email,
- handle,
61
+ name,
62
role: 'maintainer',
63
tier: 'B',
64
provenance: prov(),
0 commit comments