HomeNewsDev Tools
Dev ToolsTech Radar

GitHub Copilot Workspace Handles Full PR Lifecycle Autonomously

GitHub's agentic coding environment can now plan, write, test, and open pull requests end-to-end, cutting average feature delivery time by over 40% in trials.

GitHub BlogMay 12, 2026

GitHub Copilot Workspace exited beta and launched generally available with a significant capability expansion: the ability to handle an entire pull request lifecycle from a natural language issue description. Given a GitHub issue, Workspace can read the codebase, plan the implementation, write the code across multiple files, run tests, fix failures, and open a PR — with no human intervention required for well-scoped tasks.

In a trial with 2,000 enterprise teams, GitHub reported a 43% reduction in average time-to-PR for features described in detailed issues. The system works best for well-specified, bounded tasks — adding a feature to an existing API, writing a new component to a design spec, fixing a described bug.

What Workspace can do autonomously

  • Read and understand an entire repository codebase in context
  • Generate an implementation plan from a GitHub issue
  • Write code changes across multiple files following project conventions
  • Run CI tests and iterate on failures autonomously
  • Open a pull request with description, test results, and rationale
  • Respond to code review comments and push updates
This is the first time I have seen an AI system that genuinely understands my codebase well enough to make non-trivial contributions without hand-holding. It is not perfect but it is shockingly useful.