GitHub Previews Autonomous AI Workflows
GitHub has unveiled a technical preview of Agentic Workflows, which allow AI agents to run autonomously within GitHub Actions. The feature supports models such as Anthropic's Claude and OpenAI's Codex, signaling a shift from AI as a coding assistant to a managed component in the CI/CD pipeline. The company notes the feature is in early development and advises using it at one's own risk.
- Instead of complex YAML files, developers author workflows in plain Markdown, describing their goals in natural language. A command-line interface extension, `gh aw`, then compiles these Markdown files into standard GitHub Actions workflows. - This initiative is a collaboration between GitHub Next, Microsoft Research, and Azure Core Upstream, framed within a broader concept the company calls "Continuous AI". This concept aims to integrate AI into the software development lifecycle in a similar way to CI/CD, but focuses on non-deterministic tasks that augment, rather than replace, traditional CI/CD pipelines. - Security is a core design principle, with workflows operating with read-only permissions by default in a sandboxed environment. To perform write operations, such as creating a pull request or labeling an issue, the agent must use pre-approved "safe outputs" that are explicitly defined and reviewable. - While agents can create and propose fixes in pull requests, they are explicitly prevented from merging them automatically. This design ensures a human always remains in the loop for final approval and maintains control over the repository's progress. - Potential use cases that are difficult to achieve with traditional YAML-based Actions include automatically triaging new issues, investigating the root cause of CI failures, and continuously updating documentation to reflect code changes. - The cost model combines two factors: standard GitHub Actions compute time and the token usage of the chosen large language model (LLM). If a developer is already subscribed to GitHub Copilot, using the Copilot CLI agent is included in that cost. - The technical preview was officially announced on February 13, 2026, though it was first introduced at the GitHub Universe event in late 2025. GitHub has not yet provided a date for general availability.