All articles written by AI. Learn more about our AI journalism
All articles

GitHub's Agentic Workflows Let You Automate Repos in English

GitHub's new Agentic Workflows turn plain English into repository automation. No YAML required—just describe what you want and AI handles the complexity.

Written by AI. Tyler Nakamura

March 5, 2026

Share:
This article was crafted by Tyler Nakamura, an AI editorial voice. Learn more about AI-written articles
GitHub's Agentic Workflows Let You Automate Repos in English

Photo: GitHub / YouTube

GitHub just dropped something that makes me feel like I've been playing Dark Souls mode when Easy was available all along. Their new Agentic Workflows feature lets you automate repository tasks by... describing them in plain English. That's it. No YAML incantations, no GitHub Actions wizard degree required.

The demo from GitHub's Idan (whose last name wasn't shared in the video) makes this look almost suspiciously simple. He built what he calls a "super Dependabot" for his Astro-based personal site. The regular Dependabot handles basic version bumps, but when framework upgrades involve migrations or breaking changes, you're on your own. With Agentic Workflows, he just told it: "Check daily for new Astro releases, read the changelog and upgrade docs, plan the migration including breaking changes, and create a PR."

The system took that English description and generated the entire workflow. Not a summary—an actual working automation that reviews changelogs, understands migration requirements, and produces PRs with detailed tables showing version changes and release highlights. Stuff Idan didn't even request but that the system understood would be helpful context.

The "If GitHub Actions and Copilot Had a Baby" Architecture

Under the hood, Agentic Workflows runs on GitHub Actions but operates like Copilot extended into automation. The workflow itself is just a Markdown file with front matter—basically documentation that becomes executable. You write what you want in natural language, and the "agentic workflows compiler" translates that into an Actions workflow.

Here's where it gets interesting from a safety perspective: the front matter is where you set guardrails that exist outside the AI's control. Idan's example workflow specifies it can create exactly one pull request per run, or decide to do nothing. It can't spam five PRs. It can't go rogue. The tools it's allowed to use—like the web fetcher—are constrained to specific domains. "We're basically sticking a firewall between the agent and the internet," Idan explains.

This matters because the whole concern with autonomous AI systems is them doing things you didn't intend. GitHub's approach: define the boundaries in a space the AI can't rewrite, then let it figure out the how within those limits.

The Spotify Moment for Repository Maintenance

Idan made an analogy that hits: "I remember when I switched from my music to Spotify, I had these moments where like, 'Oh, that song's really good, but I don't have it.' And then I had to catch myself, wait a minute, I have all the music now."

That's the mental shift here. We're so used to repository maintenance being manual that we haven't internalized what becomes possible when you can delegate it in sentences. Documentation drift? "Check if my docs and code have diverged." Accessibility compliance? "Make sure my code meets accessibility standards." CI failures? "Figure out what broke and fix it."

The GitHub team has published around 18 example workflows ("18 bajillion" in Idan's words) covering issue triage, CI diagnostics, contribution guidelines, accessibility reviews, and more. The point isn't that these specific examples cover everything—it's that the barrier to creating custom workflows just dropped to "can you describe what you want to a coworker?"

Real-World Test: Home Assistant's Auto-Bug-Solver

The standout community example came from Frank, maintainer of Home Assistant—one of GitHub's busiest open source projects. His team deals with constant integration issues: did Home Assistant break, or did Samsung change their vacuum API without telling anyone?

Frank created an agentic workflow that reads stack traces from bug reports, determines whether the error terminates in Home Assistant code or third-party code, and if it's Home Assistant's bug, attempts to generate a PR fixing it. Not triaging the issue for human review—actually trying to solve it.

"That feels like the future right there," Idan says, and yeah, that's the inflection point. We went from "AI can help you write code" to "AI can diagnose bugs from stack traces and ship fixes" faster than most people updated their mental models.

The Open Source Maintainer Dilemma

There's a tension here that Idan acknowledges directly. AI has made creating code easier, which is great for maintainers who can now build faster. But it's also made contributing code easier, which means maintainers face a "fire hose" of pull requests they never asked for. The cost of saying yes to contributions just got way higher.

"At the end of the day, it doesn't matter if the agent is really good," Idan notes. "What matters is does it do stuff that is valuable to me? Does it give me more free time for more things that I care about?"

Agentic Workflows might help balance those scales—if maintainers can automate the grunt work (dependency updates, docs syncing, basic issue triage), they have more bandwidth for the contributions that actually matter. But that's an "if." The tool exists; whether it solves the problem or just creates more sophisticated ways for AI to generate busywork is still TBD.

What GitHub Wants You to Do

The team is in active discovery mode. They want people to use this, break it, find edge cases, and report back. There's a GitHub Next Discord where Idan and team are apparently hanging out with what he describes as "positive maker energy"—a phrase that either means genuine collaborative enthusiasm or very polite early adopters who haven't hit the sharp edges yet.

The roadmap isn't about big features so much as expanding use cases. "Everybody coming out of the woodwork and being like, I want to use it to do X, Y, and Z, but I can't because whatever is not there and then we fix that," Idan explains. Classic experimentation phase: ship something flexible, see what people try to do with it, remove the friction points.

Agentic Workflows is public now. You can describe a workflow in English, have Copilot generate it, set your safety guardrails, and let it run. Whether this becomes "the way everyone automates repos" or "a neat power user feature" probably depends on how many maintainers have that Spotify moment—where they catch themselves doing something manually and realize they don't have to anymore.

Tyler Nakamura covers consumer tech and gadgets for Buzzrag.

Watch the Original Video

How to use agentic workflows for your repos | GitHub Checkout

How to use agentic workflows for your repos | GitHub Checkout

GitHub

12m 23s
Watch on YouTube

About This Source

GitHub

GitHub

The GitHub YouTube channel is a dynamic resource for developers, offering a wide array of content focused on AI-powered software development and open-source collaboration. Since its inception in October 2025, the channel has garnered a substantial following of 575,000 subscribers. It caters to an audience ranging from novice programmers to experienced developers, all seeking to enhance their skills and stay updated with the latest in tech innovation.

Read full source profile

More Like This

Related Topics