The golden rule of PR reviews

You’re reviewing Jane’s pull request. It fixes a bug that stops many customers using your software. Unfortunately, her variable names look strange. Do you “Approve” her PR, or do you “Request changes”? Your choice here is between two product variants:

Product A Product B
Usability ❌ Some customers can't use it 🎉 Customers can use it
Variable names 😐 No changes 🤔 Some questionable names

If you had to choose between Product A and Product B, which would you choose? The bugfix clearly outweighs the variable name choices. Therefore, you should approve Jane’s pull request. This is The Golden Rule of PR Review: If It’s An Improvement, Approve It.

With the decision framed this way, no reasonable person would choose Product A. And yet in my experience, many reviewers would not approve Jane’s PR! This is usually because they’re not following the Golden Rule, but instead following some other incorrect rule. Let’s see some examples.

John hit “Request changes” on this PR, writing: “I would have written this loop functionally. You can use a map function here.” In doing so, John was implicitly answering the question: “Is this a change I would have made?” But this is the wrong question: you’re different people, and there’s more than one way to do it! Perhaps John was influenced by the possibility that he might be blamed for approving Jane’s review. (And perhaps John was influenced by the unfortunate name “code review”, which wrongly emphasizes “code” as the thing that matters.) As a response to John’s review policy, Jane will instead request review from team members that she believes would have implemented the change similarly.

Alex hit “Request changes”, writing: “All PRs should maintain or improve coverage. Please add unit tests before merging.” In doing so, Alex was implicitly answering the question: “Is every aspect of this PR an improvement?” But this too is a wrong question: almost everything is an engineering trade-off! Perhaps Alex was influenced by all those CI metrics (coverage, code size, bundle size, build time), which wrongly emphasize aspects that are easily measurable, and which imply that there is no trade-off amongst them. As a response to Alex’s review policy, Jane will not bother submitting future improvements, because the cost of submitting a change is too high.

Bob hit “Request changes”, writing: “The page looks bad on mobile. Please use a responsive design.” In doing so, Bob is implicitly answering the question: “Is this the ideal implementation?” But this is yet another wrong question: product development is iterative. Perhaps Bob was influenced by Gitflow, an antiquated style in which “developers create a feature branch and delay merging it to the main trunk branch until the feature is complete.” As a response to Bob’s review policy, changes will pile up on long-running “feature” branches, leading to slower software delivery.

Sometimes people complain about reviewers being “petty tyrants”, drunk on the small amount of power that this task gives them. I don’t think this is the main reason for overly strict reviews. Rather, I think the primary cause is that reviewers are not taught the Golden Rule: If It’s An Improvement, Approve It.

Discussion on Hacker News.
Tagged #programming.

Similar posts

More by Jim

👋 I'm Jim, a full-stack product engineer. Want to build an amazing product and a profitable business? Read more about me or Get in touch!

This page copyright James Fisher 2023. Content is not associated with my employer. Found an error? Edit this page.