You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 16, 2022. It is now read-only.
While thinking stuff about the automation workflow for issuing badges, I came upon this:
Because we're using GitHub's webhooks to trigger the badge issuance methods, we'd have access to the GitHub details of the user (here: contributor) under consideration. However, the badgr API will need the details from their badgr which may (and probably will) be different.
In order to correlate users, we would have a few options, a subset of which is:
Make a database mapping our contributors' GitHub credentials to their Badgr credentials and use it while issuing badges.
Automatically issue a badge to a badgr user with the same username (thus forcing username consistency upon contributors) [BAD]
Automatically issue a badge to a badgr user with the same email (thus forcing email consistency upon contributors) [RELATIVELY LESS BAD]
@nodejs/badges and others, please vote on these and if possible, propose better ones.