Vercel no longer re-deploying after git pushes

Issue is near identical to problem described at GitHub to Vercel deployment issues

Out of nowhere, vercel no longer sees anything I push to my github. There have been multiple disconnections and reconnections, as well as reinstallation of vercel app on github. No matter what I do, a webhook will not be auto generated on the github side. I have even created a manual github webhook and it is still not seeing the new pushes.

I am unable to find a git metadata issue that could be causing it. I am also not even seeing any error messages, it simply isn’t registering the new code.

I am uncertain on how to continue troubleshooting this issue.

Any advice would be appreciated.

UPDATE: I saw in the troubleshooting guide that changes to vercel.json (which I did make) required authorization, but I have not seen any notifications or places where I can approve that change. Could that be the issue?

UPDATE 2: I am now receiving emails that deployments are failing, but no deployments are showing on my vercel dashboard. This appears to be from my manual webhook that I set up, but absolutely nothing is registering on my actual vercel dashboard.

SOLVED: Problem has been resolved. Turns out that if you put new variables into the vercel.json and they have an ‘@’ symbol in the name, Vercel reads that as secret and literally won’t even show deployments or error messages in the dashboard.

Are you referring to this feature? Do you mean that after attempting to deploy with one of these secrets set, the entire deployment is missing from the deployment list?

{
  "$schema": "https://openapi.vercel.sh/vercel.json",
  "env": {
    "MY_KEY": "this is the value",
    "SECRET": "@my-secret-name"
  }
}

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