Wrong username

my github username is artmiprog
I checked my local git username. It is artmiprog too. My vercel usernamee is artmiprog, but when I create PR on github I receive a message from vercel bot " Git author wseng must have access to the project on Vercel to create deployments." But I know nothing about wseng. I never used this username
My commit is commented artmiprog commited 25 minutes ago… (for example)

Why Vercel considers my github account as wseng’s account?

Could you share what you see when you run git show <commit-hash> in your terminal? Replace with the actual commit ID.

git show a9cde2cb5167453bfd836b0c8840f497ec555750
commit a9cde2cb5167453bfd836b0c8840f497ec555750 (HEAD -> refactor/27_01, new-origin/refactor/27_01)
Author: artmiprog <johndoe@example.com>
Date:   Mon Jan 27 19:44:29 2025 +0300

    reactor

diff --git a/src/pages/searchPage/SearchPage.tsx b/src/pages/searchPage/SearchPage.tsx
index 165f623..33806af 100644
--- a/src/pages/searchPage/SearchPage.tsx
:

Is the email address redacted or is that the same address that you have associated with your GitHub account and Vercel account?

2 Likes

+1 on this suggestion, thank you for jumping in Aruns!

Do you mean the issue is because of undefined email address?

The issue is likely with your git commit email configuration. Your commit shows you’re using “johndoe@example.com”, but Vercel needs this to match your Vercel account email to properly identify you. You can fix this by updating your git config:

git config user.email "your.vercel.account@email.com"

Replace “your.vercel.account@email.com” with the actual email you use for your Vercel account. After updating this, new commits should be properly recognized.

At least, that’s how I understand the issue to be.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.