[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live)

[Help](/c/help/9)

# Vercel is not pulling latest updates from GitHub repository

276 views · 0 likes · 3 posts


Phantomddk (@phantomddk) · 2025-12-10

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.


Jacob Paris (@jacobparis) · 2025-12-11

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

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


Jacob Paris (@jacobparis) · 2026-01-23

@phantomddk, I wanted to check in on the issue with Vercel not pulling updates from your GitHub repository. Have you had a chance to troubleshoot further, or did you find a solution? Let me know if that helps!