<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ash</title>
    <description>The latest articles on DEV Community by Ash (@warlax).</description>
    <link>https://dev.to/warlax</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3730613%2F683d7433-48f9-4ffa-9900-58822310d678.jpg</url>
      <title>DEV Community: Ash</title>
      <link>https://dev.to/warlax</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/warlax"/>
    <language>en</language>
    <item>
      <title>What I learned analyzing 800K GitHub pull requests</title>
      <dc:creator>Ash</dc:creator>
      <pubDate>Tue, 27 Jan 2026 09:14:49 +0000</pubDate>
      <link>https://dev.to/warlax/what-i-learned-analyzing-800k-github-pull-requests-3646</link>
      <guid>https://dev.to/warlax/what-i-learned-analyzing-800k-github-pull-requests-3646</guid>
      <description>&lt;p&gt;I just finished analyzing 802,979 merged pull requests from GitHub Archive. The findings... aren't great.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffxt48cu9e1wmwp8a6iex.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffxt48cu9e1wmwp8a6iex.png" alt="The Big Picture 2024 to 2025" width="800" height="317"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The headline stat that haunts me
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;90% of PRs over 1,000 lines ship without any code review.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Not "light review." Not "quick approval." Zero approvals, zero change requests, zero review comments. Nothing.&lt;/p&gt;

&lt;p&gt;And it's getting worse - up from 83% in 2024.&lt;/p&gt;

&lt;h2&gt;
  
  
  The self-merge reality
&lt;/h2&gt;

&lt;p&gt;71% of all code on GitHub ships without a second pair of eyes. The author writes it, the author merges it. Done.&lt;/p&gt;

&lt;p&gt;I'm not saying self-merging is always bad (solo projects exist), but this is &lt;em&gt;all&lt;/em&gt; of GitHub. The "code review culture" many teams claim to have is increasingly fiction.&lt;/p&gt;

&lt;h2&gt;
  
  
  The size paradox broke my brain
&lt;/h2&gt;

&lt;p&gt;You'd think bigger PRs would get &lt;em&gt;more&lt;/em&gt; scrutiny. More code = more risk, right?&lt;/p&gt;

&lt;p&gt;The data says the opposite:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;PR Size&lt;/th&gt;
&lt;th&gt;Review comments per 100 lines&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Tiny (&amp;lt;10 lines)&lt;/td&gt;
&lt;td&gt;0.98&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Massive (1000+ lines)&lt;/td&gt;
&lt;td&gt;0.05&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;That's &lt;strong&gt;20x less scrutiny per line&lt;/strong&gt; for the biggest changes. Reviewers see a wall of code and just... approve.&lt;/p&gt;

&lt;h2&gt;
  
  
  The first-timer tax
&lt;/h2&gt;

&lt;p&gt;New contributors to a repo wait &lt;strong&gt;38% longer&lt;/strong&gt; to get merged than repeat contributors (22h vs 16h median).&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw0rrkva7llif7sdn39gm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw0rrkva7llif7sdn39gm.png" alt="First Timer Tax" width="800" height="414"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Good news: this improved from 53% in 2024. Teams are getting better at onboarding. But the gap is still real.&lt;/p&gt;

&lt;h2&gt;
  
  
  Wednesday is the new Monday
&lt;/h2&gt;

&lt;p&gt;This surprised me. In 2024, Monday was peak merge day (the "clear the backlog" effect). In 2025, &lt;strong&gt;Wednesday dominates at 23.5%&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Teams seem to be moving toward more distributed workflows rather than the Monday morning merge rush.&lt;/p&gt;

&lt;h2&gt;
  
  
  The bot collapse
&lt;/h2&gt;

&lt;p&gt;Remember when Dependabot PRs were &lt;em&gt;everywhere&lt;/em&gt;? &lt;/p&gt;

&lt;p&gt;Bot PRs went from &lt;strong&gt;62% of all PRs in 2022&lt;/strong&gt; to just &lt;strong&gt;15.5% in 2025&lt;/strong&gt;. The automation boom is over. Teams got tired of the noise.&lt;/p&gt;

&lt;h2&gt;
  
  
  What actually works (from the data)
&lt;/h2&gt;

&lt;p&gt;For teams that &lt;em&gt;do&lt;/em&gt; practice code review, the median cycle time is &lt;strong&gt;3 hours&lt;/strong&gt;. That's the benchmark to aim for.&lt;/p&gt;

&lt;p&gt;Things that correlate with healthier review practices:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Smaller PRs (the data is unambiguous here)&lt;/li&gt;
&lt;li&gt;Branch protection rules requiring approval&lt;/li&gt;
&lt;li&gt;CODEOWNERS files for domain expertise&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The full research
&lt;/h2&gt;

&lt;p&gt;I've published the complete methodology, interactive charts, and YoY comparisons here: &lt;a href="https://codepulsehq.com/research/code-review-study-2025" rel="noopener noreferrer"&gt;2025 Engineering Benchmarks: Year in Review&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Includes breakdowns by language, a spotlight on how AI tool repos (Codex, Gemini CLI, Claude Code) ship code, and the raw numbers for benchmarking your team.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What's your team's self-merge rate? Curious if these numbers match what you're seeing.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>github</category>
      <category>codereview</category>
      <category>productivity</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
