Vercel is not pulling latest updates from GitHub repository

I’m experiencing an issue where Vercel no longer pulls the latest updates from my connected GitHub repository.

Problem description:
When I push new updates through GitHub Desktop, the changes appear correctly on GitHub. However, Vercel does not trigger a new deployment — nothing happens after the changes are pushed.
I have already tried:

  • Switching my current branch back and forth

  • Adjusting Branch Tracking settings

  • Disconnecting and reconnecting my GitHub integration in Vercel
    Unfortunately, this has not solved the issue.

Expected behaviour:
Every new push to the connected GitHub branch should automatically trigger a new deployment on Vercel.

Actual behaviour:
No deployment is triggered, and Vercel does not seem to detect new commits from GitHub.

Additional details:

  • Deployment triggers previously worked

  • Changes are confirmed visible on GitHub

  • No error messages appear in Vercel

If you need repository or project details, I can provide them privately.

The most common reason for this is if the committer email is not a member of the Vercel team. In this case you should receive an email letting you know the deployment did not occur

If you are a member of the team, most often you just need to configure your git email settings

git config --global user.name "Name"
git config --global user.email "email@example.com"