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
`Unexpected commit author found by ${commitAuthor}! Commits should be authored by ${privileged_requester_username} I will not proceed with the privileged reviewer process.`,
);
returnfalse;
It is however really easy to make a commit with a different name, or email address.
git -c user.name='Linus Torvalds' -c user.email='torvalds@linux-foundation.org' commit -m "Wow, this is definitely legit."
The current checks uses
author nameto ensure that the changes were made by the expected user.privileged-requester/src/runner.js
Lines 16 to 23 in fdd9f57
It is however really easy to make a commit with a different name, or email address.
This poses a serious risk of impersonation.