Merging is blocked - Missing successful Production deployment #3215
Replies: 1 comment 4 replies
|
Sorry for the delayed response, @mirhamasala. I just noticed your question posted over in the CLI repo, so I moved it over here to our main discussion board where I spend most of my time. 🙂 It looks like the branch requires a Production deployment before merging, but the default Vercel Git integration only creates a Preview deployment until the code is actually merged into your production branch. You have a couple of options to solve this. The first option, and the one I recommend, is to change the branch's settings in GitHub to only require a successful Preview deployment and not a Production deployment. After the PR is merged, the production deployment will happen automatically. The other option requires a bit more setup using a GitHub workflow to deploy to production or manual deployment to Production. |




Sorry for the delayed response, @mirhamasala. I just noticed your question posted over in the CLI repo, so I moved it over here to our main discussion board where I spend most of my time. 🙂
It looks like the branch requires a Production deployment before merging, but the default Vercel Git integration only creates a Preview deployment until the code is actually merged into your production branch. You have a couple of options to solve this.
The first option, and the one I recommend, is to change the branch's settings in GitHub to only require a successful Preview deployment and not a Production deployment. After the PR is merged, the production deployment will happen automatically.
The oth…