How to Make your PRs Unreviewable
For software developers, a Pull Request (PR) is a foundational unit of work. Although there are quite a few software engineers that I’ve encountered that are more on the isolationist side, most are naturally collaborative. Asking for feedback is something that we do often. A PR is fundamentally a request for feedback upon a slice of code that the author would like to add to the shared code base. In order to enforce the quality of the project, other engineers will review the code that author wrote, provide suggestions for changes, and iteratively work to incorporate the code into the codebase. Once the code is of sufficient quality, the request is merged into the main codebase and the process begins anew. ...