So my manager today asked me if I could stay later when there’s broken things in prod, and then today his star dream employee yolo’ed a full stack change into prod without review. It’s fucking massive and implements new API endpoints, touches >20 files. Many of the diffs are too large to render in the browser.
It’s almost comical, but something immediately broke.
Most of my day, I’m digging through code to identify bugs created from this shit, just to get a stealth merge midday.
I kind of don’t know what to do.


Make ci/cd part of the process. It stops a lot of people who push huge unmaintanable changes.
If it doesent pass the tests and cant build then it stops them from merging.
Yeah this is my general tool for dealing with shit code. I’m currently working on getting that into the CI
It helps! Ive seen it with two jobs completely change the culture around code review.
Mind you its not perfect of course. You can still “Vibe” test and/or remove tests that dont work. And make the project more brittle. Or go overboard with lint rules (I actually had to break up a fight with that one). But its much better than the old process of merge and pray.