Hi @jakedemian, welcome to the Vercel Community!
The most commonly used solution is having two branches: main
and stage
. Every new change is merged into stage
and when you are ready you merge it to main
. This way Vercel can continue to work as is, making new production deployments for all commits to main
.
I hope this was helpful.