Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Akka introduces platform for distributed agentic AI

      July 14, 2025

      Design Patterns For AI Interfaces

      July 14, 2025

      Amazon launches spec-driven AI IDE, Kiro

      July 14, 2025

      This week in AI dev tools: Gemini API Batch Mode, Amazon SageMaker AI updates, and more (July 11, 2025)

      July 11, 2025

      ChatGPT falls for another Windows license key scam — generating valid codes in a guessing game after a researcher “gives up”

      July 14, 2025

      Germany wants Google and Apple to ban China’s “illegal” DeepSeek AI — after it failed to comply with data protection laws

      July 14, 2025

      Microsoft’s extra year of free Windows 10 security updates feels like a last-minute snooze button — while groups like “The Restart Project” still want to help users

      July 14, 2025

      The Xbox Ally and Xbox Ally X prices may have leaked — and if true, it’s not as bad as I thought

      July 14, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      The details of TC39’s last meeting

      July 14, 2025
      Recent

      The details of TC39’s last meeting

      July 14, 2025

      Modern async iteration in JavaScript with Array.fromAsync()

      July 14, 2025

      Vite vs Webpack: A Guide to Choosing the Right Bundler

      July 14, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      ChatGPT falls for another Windows license key scam — generating valid codes in a guessing game after a researcher “gives up”

      July 14, 2025
      Recent

      ChatGPT falls for another Windows license key scam — generating valid codes in a guessing game after a researcher “gives up”

      July 14, 2025

      Germany wants Google and Apple to ban China’s “illegal” DeepSeek AI — after it failed to comply with data protection laws

      July 14, 2025

      Microsoft’s extra year of free Windows 10 security updates feels like a last-minute snooze button — while groups like “The Restart Project” still want to help users

      July 14, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»News & Updates»Code review in the age of AI: Why developers will always own the merge button

    Code review in the age of AI: Why developers will always own the merge button

    July 14, 2025

    When GitHub first shipped the pull request (PR) back in 2008, it wrapped a plain-text diff in a social workflow: comments, approvals, and a merge button that crucially refused to light up without at least one thumbs up from another developer. That design decision hard-wired accountability into modern software and let maintainers scale far beyond hallway conversations or e-mail patches.

    Seventeen years later, just about every “agentic” coding tool, from research demos to enterprise platforms, still funnels its work through that same merge gate. The PR remains the audit log, the governance layer, and the social contract that says nothing ships until a person is willing to own it.

    Now that large language models (LLM) can scaffold projects, file PRs, and even reply to review comments they wrote themselves, the obvious next question is, who is accountable for code that ships when part of it comes from a model? 

    At GitHub, we think the answer hasn’t fundamentally changed: it’s the developer who hits “Merge.” But what has changed is everything that happens before that click. 

    In this article, we’ll explore how we’re re-thinking code reviews for a world where developers increasingly work with AI (and how your team can, too). 

    What a code review is (still) for

    Before diving into AI-assisted reviews, it’s worth revisiting what makes code reviews effective in the first place. A review is far more than a bug hunt. A good review: 

    • Catches defects and security issues 
    • Ensures high code quality
    • Shares knowledge across the team and maintains consistency with your codebase’s patterns and standards
    • Safeguards long-term maintainability 

    AI changes none of that; it only moves the bottlenecks. A model can quickly spot an unused import, but it can’t decide if a new endpoint undermines your privacy stance or if today is the right day to pay down that gnarly abstraction you’ve been avoiding. The merge button still needs (and, in our view, always will need) a developer fingerprint.

    For a deeper dive into effective code review practices, check out our guide on reviewing code effectively.

    What we learned from GitHub Copilot’s code review capabilities

    Earlier this year, the GitHub Copilot code review team conducted in-depth interviews with developers about their code review process. They also walked us through their code review workflow. These interviews revealed three consistent patterns:

    1. No special treatment for AI: Reviewers grilled model-generated diffs as hard as those from other developers.
    2. Self reviews raised the floor: Developers who ran a Copilot review before opening a PR often wiped out an entire class of trivial nit-picks (i.e., trimmed imports, missing tests), cutting out back-and-forth by roughly a third.
    3. AI was no replacement for human judgement: Programming often involves trade-offs. LLMs can inform you about those trade-offs, but someone has to make the call about what path to take based on your organization’s goals and standards.  

    An overarching principle quickly became clear: AI augments developer judgment; it can’t replace it. And our findings, from confidence scores to red-flag explanations, are informing how we’re building Copilot’s code review features.

    GitHub Copilot code review is generally available

    Let an AI teammate handle the first pass. GitHub Copilot’s code-review agent is generally available for every Copilot plan, and it’s spotting bugs, performance issues, and even suggesting fixes before a human ever opens the diff. Enable automatic reviews in your repo rules or ask Copilot on-demand, right inside GitHub, GitHub Mobile, or VS Code.

    Learn more >

    What AI can (and can’t) handle today

    LLMs are already great at the “grind” layer of a review:

    • Mechanical scanning. “Is there a typo?” “Are all arguments used?”
    • Pattern matching. “This looks like SQL injection” or “You forgot to await that promise.”
    • Pedantic consistency. “Variable names snake_case here, camelCase there.”

    Soon they’ll be able to do even more, such as understand product and domain context.  But they still fall short on:

    • Architecture and trade-offs. Should we split this service? Cache locally?
    • Mentorship. Explaining why a pattern matters and when to break it.
    • Values. Should we build this feature at all?

    Those gaps keep developers in the loop and in the pilot’s seat. That principle is foundational for us as we continue to develop GitHub Copilot. 

    A playbook for modern code reviews

    The most effective approach to AI-assisted code reviews starts before you even submit your pull request. Think of it as the golden rule of development: Treat code reviewers the way you’d like them to treat you.

    Use AI to self review your code in your IDE

    Before pushing your code, run GitHub Copilot code review in your IDE to catch the obvious stuff so your teammates can focus on the nuanced issues that require developer insight. Copilot code review can comb your staged diff, suggest docstrings, and flag null dereferences. From there, you can fix everything it finds before you submit your PR so teammates never see the noise.

    Take ownership of your code

    Just because you used AI to generate code doesn’t mean it’s not your code. Once you commit code, you’re responsible for it. That means understanding what it does, ensuring it follows your team’s standards, and making sure it integrates well with the rest of your codebase.

    If an AI agent writes code, it’s on me to clean it up before my name shows up in git blame.

    Jon Wiggins, Machine Learning Engineer at Respondology

    Run your code through automated CI gates

    Your pipeline should already be running unit tests, secret scanning, CodeQL, dependency checks, style linters. Keep doing that. Fail fast, fail loudly.

    Practical tips for personal code hygiene:

    • Review your own code in your IDE.
    • Ensure variable names, comments, and structure to match your team’s conventions.
    • Test AI-generated code thoroughly before including it in pull requests.

    Use AI to focus on the areas where your judgement is critical

    The real power of AI in code reviews isn’t in replacing developers as the reviewers. It’s in handling the routine work that can bog down the review process, freeing developers to focus where their judgment is most valuable.

    AI doesn’t replace your existing automated checks. 

    Make sure tests pass, coverage metrics are met, and static analysis tools have done their work before developer reviews begin. This creates a solid foundation for more meaningful discussion. 

    You can use an LLM to catch not just syntax issues, but also patterns, potential bugs, and style inconsistencies. Ironically, LLMs are particularly good at catching the sorts of mistakes that LLMs make, which is increasingly relevant as more AI-generated code enters our codebases.

    Clearly define roles

    Set clear expectations about when AI feedback should be considered versus when human judgment takes precedence. For example, you should rely on other developers for code architecture and consistency with business goals and organizational values. It’s especially useful to use AI to review long repetitive PRs where it can be easy to miss little things.

    Implementation tips for building a sustainable AI-assisted review process

    • Document clear guidelines that specify when to use AI in code reviews, what types of feedback to trust, and how to escalate when developers disagree with an AI code review. With GitHub Copilot, for instance, you can use custom instructions to set clear rules for how Copilot engages with your code. 
    • Update guidelines regularly based on team feedback and evolving AI capabilities. Remember that as your codebase and AI tools evolve, what works today might not work tomorrow.
    • Encourage open team discussions about the strengths and limitations of AI-assisted reviews. Share both positive and negative experiences to help everyone learn and improve their approach.
    • Refine automation continuously by using feedback from reviewers to improve your automated testing strategy. Identify patterns where solutions to recurring issues could be automated.

    Developer judgement remains crucial

    While AI can handle much of the routine work in code reviews, developer judgment remains irreplaceable for architectural decisions, mentoring and knowledge transfer, and context-specific decisions that require understanding of your product and users. 

    And even as LLMs get smarter, three review tasks remain stubbornly human:

    1. Architecture trade-offs: Should we split this service? Cache locally? Pay tech debt now or later?
    2. Mentorship and culture: PR threads are team classrooms. A bot can’t tell a junior engineer the war story behind that odd regex.
    3. Ethics and product values: “Should we even build this?” is a question AI can’t answer.

    The goal is to make developers more effective by letting them focus on what they do best.

    Learn more about code reviews with GitHub Copilot > 

    The post Code review in the age of AI: Why developers will always own the merge button appeared first on The GitHub Blog.

    Source: Read More 

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleOrange Pi RV2 Single Board Computer Running Linux: Building a Program
    Next Article CVE-2025-7627 – YiJiuSmile kkFileViewOfficeEdit Unrestricted File Upload Vulnerability

    Related Posts

    News & Updates

    ChatGPT falls for another Windows license key scam — generating valid codes in a guessing game after a researcher “gives up”

    July 14, 2025
    News & Updates

    Germany wants Google and Apple to ban China’s “illegal” DeepSeek AI — after it failed to comply with data protection laws

    July 14, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    CVE-2025-7067 – HDF5 Heap-Based Buffer Overflow

    Common Vulnerabilities and Exposures (CVEs)

    RARE (Retrieval-Augmented Reasoning Modeling): A Scalable AI Framework for Domain-Specific Reasoning in Lightweight Language Models

    Machine Learning

    CVE-2025-5613 – PHPGurukul Online Fire Reporting System SQL Injection Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    NVIDIA became the first $4 trillion company — here’s how the tech giant beat Microsoft and Apple

    News & Updates

    Highlights

    CVE-2025-49029 – Bitto Kazi Custom Login And Signup Widget Code Injection Vulnerability

    July 1, 2025

    CVE ID : CVE-2025-49029

    Published : July 1, 2025, 2:15 p.m. | 1 hour, 20 minutes ago

    Description : Improper Control of Generation of Code (‘Code Injection’) vulnerability in bitto.Kazi Custom Login And Signup Widget allows Code Injection.This issue affects Custom Login And Signup Widget: from n/a through 1.0.

    Severity: 9.1 | CRITICAL

    Visit the link for more details, such as CVSS details, affected products, timeline, and more…

    Microsoft’s premium Xbox Elite Series 2 Wireless Controller is on sale with a rare 20% discount

    May 19, 2025

    Zyxel RCE Vulnerability Allows Arbitrary Query Execution Without any Authentication

    April 24, 2025

    Hire the Best Shopify Experts in Houston for Your Online Store

    April 9, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.