Scaling Builds with Runners in Bitbucket Pipelines
Cloud-hosted runners, managed by Atlassian, suit light and frequent builds, while self-hosted runners on an organization's own infrastructure suit resource-intensive builds, strict compliance needs and access to systems behind a corporate firewall. Self-hosted runners avoid build minute charges but add operational overhead, and many organizations combine both in a hybrid model.
Navigating CI/CD Scalability with Bitbucket Pipelines
Bitbucket Pipelines serves as a cloud-based continuous integration and continuous delivery CI/CD service, deeply integrated into Atlassian's Bitbucket platform.
In the dynamic landscape of modern software development, teams face an escalating challenge: scaling their CI/CD workflows to accommodate increasing code complexity, expanding team sizes, and more frequent build cycles. This necessitates flexible runner options that can meet a diverse range of workload demands. These demands can vary from small, rapid builds for minor code changes to large, resource-intensive tasks such as extensive test suites or complex compilations, and even the imperative to integrate with existing on-premises infrastructure. The selection of the appropriate runner setup is therefore paramount for optimizing CI/CD workloads on demand, securely connecting on-premises build agents behind corporate firewalls, and fine-tuning both costs and performance.
A significant advantage of Bitbucket Pipelines stems from its seamless integration with Bitbucket itself and other Atlassian products like Jira and Confluence.
Furthermore, the flexibility offered by Bitbucket Pipelines, particularly through its runner options and emphasis on "configuration as code"

The Core of Bitbucket Pipelines: An Overview
Bitbucket Pipelines operates as a robust CI/CD platform, designed to streamline and automate software development workflows. Its foundational features provide a comprehensive environment for continuous integration and delivery.
-
Integrated CI/CD Solution: Bitbucket Pipelines is intrinsically linked with Bitbucket, providing a unified platform where developers can manage their code repositories and execute CI/CD workflows without needing to switch between different systems.
This native integration simplifies the development process, offering end-to-end visibility from coding to deployment. -
YAML-Based Configuration: The entire pipeline process, including build, test, and deployment steps, is defined using a
bitbucket-pipelines.ymlfile located in the root directory of the repository. This "configuration as code" approach ensures that pipeline definitions are version-controlled alongside the application code, making them easy to track, modify, and revert. This practice extends beyond simple automation, enabling version control and auditability of the CI/CD pipeline itself. Treating pipeline configurations with the same rigor as application code fosters collaboration, facilitates rollbacks, and enables historical analysis of build processes, transforming CI/CD from an operational task into a development artifact that enhances transparency and governance, which is crucial for compliance and large-scale enterprise environments. -
Docker Container Support: Every step within a Bitbucket Pipeline runs inside a fresh Docker container.
This design choice ensures an isolated and consistent environment for each build, guaranteeing that builds execute under identical conditions every time, regardless of the underlying host machine or other concurrent builds. This consistency eliminates the common "works on my machine" problem, a significant source of friction and bugs in development. The consistent environments fostered by Docker containers lead directly to higher software quality and reduced debugging time, thereby improving team efficiency and the reliability of software releases. -
Parallel Execution: Bitbucket Pipelines supports the parallel execution of multiple steps or even entire pipelines.
This capability significantly reduces overall build times for complex projects by maximizing resource utilization, allowing different parts of the CI/CD workflow to run concurrently. -
Built-in Integrations and Pipes: The platform integrates seamlessly with other Atlassian products, such as Jira and Confluence, enhancing workflow automation and visibility across the development lifecycle.
Additionally, Bitbucket Pipes provide pre-configured, plug-and-play code chunks that simplify the creation of powerful, automated CI/CD workflows with popular third-party tools for hosting, monitoring, and incident management. -
Artifacts and Caching: To further optimize build times and manage dependencies, Bitbucket Pipelines includes robust support for artifact storage and caching mechanisms.
Caching frequently used dependencies, such asnode_modulesor Maven artifacts, can drastically reduce the time required for subsequent builds by avoiding redundant downloads and installations.
Understanding Your Options: Cloud-Hosted vs. Self-Hosted Runners
The decision between cloud-hosted and self-hosted runners for Bitbucket Pipelines is fundamental, directly influencing the performance, cost, and degree of control over an organization's CI/CD workflows.
The core distinction between cloud and self-hosted runners is not merely the location where builds execute, but rather the party responsible for managing the underlying infrastructure. Cloud runners offer significant convenience and ease of management, as Atlassian handles all aspects of hosting and maintenance.
At a higher level, the choice between runner types reflects an organization's strategic priorities. If the primary objective is rapid time-to-market and minimal operational overhead, cloud runners are often the preferred solution. They enable quick iteration and deployment without requiring significant infrastructure investment. However, for organizations operating under strict regulatory compliance, requiring specialized hardware configurations for unique workloads, or prioritizing deep cost optimization through resource consolidation, self-hosted runners become a more compelling option.

Cloud-Hosted Runners: Simplicity and Speed
Cloud-hosted runners in Bitbucket Pipelines offer a streamlined approach to CI/CD, leveraging Atlassian's managed infrastructure to provide convenience and rapid deployment capabilities.
Advantages
-
Ease of Management: Cloud runners are fully managed by Atlassian, eliminating the need for users to provision, host, or manage any servers.
This significantly reduces infrastructure setup, maintenance, and patching overhead, allowing development teams to focus primarily on coding and application development rather than CI/CD infrastructure management. -
Quick Setup and Immediate Availability: With no prerequisites or complex setup steps required on the user's end, teams can initiate CI/CD automation almost instantaneously.
This rapid onboarding is particularly beneficial for smaller teams or projects needing to quickly establish automated workflows. -
Scalability for General Workloads: Bitbucket's cloud infrastructure automatically handles the scaling of resources for typical CI/CD workloads.
This ensures that resources are available on demand, accommodating fluctuations in build frequency and complexity without manual intervention. -
Built-in Security: Atlassian is responsible for managing the security of the underlying infrastructure, including aspects such as storage encryption and secure communication protocols.
This offloads a significant portion of security management from the user's responsibility.
Considerations
The convenience of cloud-hosted runners, while appealing, comes with specific considerations that organizations must evaluate. The primary concern revolves around cost and resource limitations.
Usage of cloud runners is directly tied to "build minutes" consumed from a workspace subscription.
Cloud runners also operate within predefined memory limits for step sizes, typically ranging from 1x-4GB to 4x-32GB.
A critical architectural constraint of cloud runners is their inability to directly access internal systems or databases located behind a corporate firewall.
Cloud Runner Pricing Tiers and Build Minutes
|
Plan Type |
Price (per user/month) |
Build Minutes Included (per month) |
Large File Storage Included |
Concurrent Steps |
|
Free |
$0 (up to 5 users) |
50 min |
1 GB |
Up to 10 |
|
Standard |
$3.30 |
2,500 min |
5 GB |
Up to 600 |
|
Premium |
$6.60 |
3,500 min |
10 GB |
Up to 600 |
|
Overage |
$10 per 1,000 min |
N/A |
$10 per 100 GB |
N/A |
Self-Hosted Runners: Control, Customization, and Performance
Self-hosted runners present a powerful alternative to cloud-hosted options, enabling organizations to execute Bitbucket Pipelines builds on their own infrastructure. This model provides unparalleled control and customization, making it an ideal choice for scenarios where standard cloud environments are insufficient.
Advantages
-
Tailored Environments: Self-hosted runners provide complete control over the hardware, operating system, and software tools used for builds.
This allows for highly custom build configurations, including specialized hardware setups with increased memory or processing power for resource-intensive builds, and the installation of specific software or dependencies that may not be available in standard cloud environments. -
Enhanced Performance for Demanding Workloads: For large, complex, or computationally intensive builds, such as machine learning model training, extensive code compilations, or large-scale test suites, self-hosted runners can be provisioned with significantly more memory and processing power than the fixed limits of cloud runners.
This direct control over resources can drastically improve build execution times and overall pipeline throughput. -
Cost Savings on Build Minutes: A major financial benefit of self-hosted runners is that organizations are not charged for build minutes by Atlassian, as they are utilizing their own compute resources.
This can lead to substantial cost savings, particularly for teams with high build frequencies or long-running pipelines. -
Strategic Access: Hooking Up On-Premises Build Agents Behind the Firewall:
-
Self-hosted runners can be deployed directly within an organization's internal network, providing pipelines with secure access to internal systems, databases, or applications that reside behind a corporate firewall.
This capability is indispensable for conducting integration tests against internal services, deploying applications to on-premises servers, or accessing sensitive internal resources that cannot be exposed to the public internet. -
Running build agents behind a corporate firewall inherently enhances the security posture by keeping sensitive code, build processes, and data within the organization's controlled network perimeter.
This aligns strongly with stringent compliance requirements and data governance policies, offering a level of data locality and control that is often critical for regulated industries.
-
Considerations and Challenges
While self-hosted runners offer significant advantages, they also introduce a set of operational responsibilities and challenges that organizations must be prepared to address.
Managing self-hosted runners entails considerable operational overhead. The organization becomes responsible for the entire infrastructure, including the provisioning of hardware or virtual machines, network configuration, ongoing maintenance, applying security patches, and comprehensive monitoring of the runner fleet.
Security responsibility is entirely shifted to the organization when using self-hosted runners. While this offers greater control, it also means the organization must implement robust security practices for the runner host, including operating system hardening, network segmentation, and secure credential management.
Furthermore, self-hosted runners do not inherently possess automatic scaling capabilities. Organizations must implement their own scaling solutions, such as the Bitbucket Runners Autoscaler for Kubernetes, to dynamically adjust the number of runners based on the current workload.
Self-Hosted Runner Types and Their Capabilities
|
Feature / Type |
Linux Docker |
Linux Shell |
Windows |
MacOS |
Linux Docker ARM64 Beta |
|
Architecture |
Linux Docker |
Linux Shell |
Windows |
MacOS |
Linux Docker ARM64 |
|
Infrastructure |
User's own |
User's own |
User's own |
User's own |
User's own |
|
Runtime |
Docker |
Shell |
Powershell |
Shell |
Docker ARM64 |
|
Host OS |
Linux 64-bit, 8GB+ RAM |
Linux 64-bit, 8GB+ RAM |
Windows 64-bit, 8GB+ RAM |
MacOS 64-bit, 8GB+ RAM |
Linux/MacOS ARM64, 8GB+ RAM |
|
Build Minutes Charged |
No |
No |
No |
No |
No |
|
Memory Usage Restriction |
1x, 2x, 4x, 8x step sizes |
No restriction (host limited) |
No restriction (host limited) |
No restriction (host limited) |
1x, 2x, 4x, 8x step sizes |
|
Service Containers |
✅ |
❌ |
❌ |
❌ |
✅ |
|
Cache Support |
✅ |
✅ (no Docker cache) |
✅ (no Docker cache) |
✅ (no Docker cache) |
✅ |
|
Artifacts Support |
✅ |
✅ |
✅ |
✅ |
✅ |
|
Bitbucket Pipelines SSH keys |
✅ |
❌ |
❌ |
❌ |
✅ |
|
Pipes Support |
✅ |
❌ |
❌ |
❌ |
✅ |
|
Git LFS Support |
✅ |
✅ (needs host install) |
✅ (needs host install) |
✅ (needs host install) |
✅ |
|
Custom Docker in Docker |
✅ |
❌ |
❌ |
❌ |
✅ |
|
Override Default User |
✅ |
❌ |
❌ |
❌ |
✅ |
Optimizing for Success: Cost, Performance, and Security
Achieving optimal CI/CD performance with Bitbucket Pipelines extends beyond merely selecting a runner type; it necessitates a holistic approach that encompasses diligent cost management, continuous performance tuning, and robust security practices. These optimization strategies are universally applicable to both cloud-hosted and self-hosted environments, ensuring that pipelines remain efficient, fast, and secure throughout their lifecycle.
Cost Optimization Strategies for Both Runner Types
-
Optimize Build Scripts: Streamlining build scripts and eliminating unnecessary steps directly reduces execution time, thereby minimizing resource consumption and associated costs.
-
Implement Smart Branching Strategies: By carefully designing branching strategies, organizations can limit unnecessary builds, ensuring that pipelines are triggered only when genuinely required. This prevents wasteful consumption of build minutes and compute resources.
-
Leverage Caching Effectively: Implementing comprehensive caching strategies for dependencies and build artifacts can significantly accelerate subsequent builds by reusing previously downloaded or compiled components.
Regular review and updates of cache configurations are essential to maintain optimal performance and prevent stale caches from hindering efficiency. -
Rightsizing Build Environments: For cloud runners, selecting appropriate Docker images that match the workload's actual needs avoids over-provisioning and unnecessary build minute consumption.
For self-hosted environments, provisioning compute resources, such as CPU and memory, that precisely match the workload's requirements prevents both under-utilization and costly over-provisioning. -
Monitor and Analyze Usage: Utilizing Bitbucket's built-in analytics alongside third-party monitoring tools is crucial for tracking build times, resource consumption, and overall costs.
Implementing cost allocation and tagging practices allows organizations to associate costs with specific projects or teams, facilitating detailed cost reports and identifying areas ripe for further optimization.
Boosting Performance: Caching, Parallelization, and Image Management
-
Aggressive Caching: Caching remains the most impactful technique for reducing build times. This involves caching dependency directories for various package managers, such as
node_modulesfor Node.js,.m2for Maven, or~/.gradlefor Gradle. -
Parallelize Independent Steps: Identifying and configuring multiple steps or entire pipelines to run concurrently maximizes resource utilization and significantly reduces the overall pipeline execution time.
It is important to be mindful of concurrency limits imposed by Bitbucket plans or self-hosted runner configurations to avoid bottlenecks. -
Optimize Docker Images: Starting with lean base images that contain only the necessary runtime components helps reduce image size and build context, leading to faster pulls and execution.
For compiled languages or complex applications, implementing multi-stage Docker builds allows for the use of larger images with build tools in initial stages, then copying only essential artifacts to a much smaller, production-ready image in a final stage. Additionally, pinning images by their digest ensures immutability, guaranteeing that the exact same image version is used every time and preventing unexpected changes. -
Split and Chain Large Pipelines: Breaking down a single, monolithic pipeline into smaller, modular components improves readability, simplifies debugging, and allows for more granular control over different stages of the delivery process.
-
Smart Use of Artifacts: Artifacts, files generated during a pipeline run that need to be persisted or passed to subsequent steps, should be managed judiciously. Only store what is absolutely necessary and avoid passing large, redundant files to reduce I/O overhead and storage costs.
The numerous optimization strategies available demonstrate that CI/CD optimization is not a static configuration but an ongoing, iterative process. The recommendation to "regularly review and update cache configurations"
Security Best Practices for Runner Environments
-
Secure Credential Management: Employ Bitbucket's secure variable storage for sensitive information such as API tokens and credentials.
It is critical to implement least-privilege access principles, ensuring that credentials have only the minimum necessary permissions. Avoid storing credentials directly in code or configuration files within the repository. -
Network Segmentation: For self-hosted runners, configure runner virtual machines within their own isolated network segments and implement strict controls to restrict traffic between them.
It is essential to allowlist only the necessary IP addresses for runners to connect to Bitbucket Pipelines, minimizing the attack surface. -
Runner Host Security: Implement robust security best practices for the runner's host operating system. Since malicious code executed within a CI job could potentially compromise the host, strong security protocols are vital.
Consider leveraging specialized CI/CD security agents, such as StepSecurity's Harden-Runner, for real-time monitoring of network egress, file integrity, and process activity on the runners. -
Regular Audits and Updates: Periodically review and remove any unused or expired secrets to reduce potential exposure.
Ensure that self-hosted runners are regularly updated to the latest versions to benefit from critical security patches and performance improvements. -
Code Review and Approvals: Implement mandatory pull request approvals and rigorous code review processes before merging changes into the main codebase. This acts as a crucial safeguard against malicious code being introduced into the pipeline.
The detailed security practices outlined demonstrate that security in CI/CD is not a separate phase but must be integrated throughout the entire pipeline and runner management process. The concept of DevSecOps is implicitly highlighted, emphasizing that security considerations should be embedded from the initial stages of development. The significant implication is that neglecting security at any point, particularly with self-hosted runners that grant more direct control over infrastructure, can lead to severe vulnerabilities, data breaches, and non-compliance issues.
Making the Right Choice: A Decision Framework
Selecting the optimal runner strategy, whether cloud-hosted, self-hosted, or a hybrid model, is a strategic decision that must be guided by a thorough understanding of an organization's unique needs and constraints. This framework assists in weighing the critical factors to make an informed choice for a Bitbucket Pipelines setup.
Key Factors
-
Workload Demands:
-
For light, frequent builds with standard dependencies, cloud runners offer simplicity and speed due to their managed nature and immediate availability.
-
For resource-intensive tasks, such as large compilations, complex testing suites, or machine learning model training, which demand significant CPU, memory, or specialized hardware, self-hosted runners provide the necessary power and customization.
-
-
Compliance and Security Requirements:
-
Organizations with stringent data locality requirements, regulatory compliance obligations (e.g., GDPR, PCI DSS), or sensitive intellectual property often prefer self-hosted runners. This allows them to maintain full control over their build environment and keep sensitive data within their own network boundaries, which is crucial for meeting compliance and data governance needs.
-
Cloud runners rely on Atlassian's security measures and certifications, which may be sufficient for organizations with less stringent or standard security requirements.
-
-
Budget and Cost Model:
-
Cloud runners operate on a consumption-based model, incurring costs based on build minutes, storage, and data transfer.
This model offers predictability for consistent, lower usage but can become prohibitively expensive with high frequency or long-running builds. -
Self-hosted runners eliminate direct build minute charges but introduce new cost categories related to infrastructure, maintenance, and operational overhead.
A thorough Total Cost of Ownership analysis, accounting for both direct and indirect costs, is crucial for an accurate comparison.
-
-
Existing Infrastructure and Expertise:
-
If a team already manages extensive on-premises infrastructure or possesses strong in-house expertise in Kubernetes and cloud resource management, integrating self-hosted runners might be a seamless extension of their existing capabilities.
-
For teams that prefer minimal infrastructure management and wish to offload operational responsibilities, cloud runners represent the simpler and more convenient choice.
-
-
Access to Internal Systems: If CI/CD processes necessitate direct, secure access to internal databases, proprietary APIs, or other systems located behind a corporate firewall, self-hosted runners are essential. They provide the necessary network proximity and control to facilitate such connections.
The numerous factors involved in the decision framework highlight that there is no single "best" runner type; the optimal choice is highly contextual. It depends on a nuanced evaluation of multiple, often competing, priorities within an organization. This extends beyond simple metrics like raw performance or cost per minute, encompassing the alignment of the CI/CD infrastructure with the specific needs and strategic goals of different projects or teams. This understanding leads to the conclusion that a "one-size-fits-all" approach is rarely optimal in complex enterprise environments.

The Hybrid Approach: Leveraging Both for Optimal Efficiency
Many organizations discover that the most effective and resilient strategy involves adopting a hybrid model, combining the strengths of both cloud-hosted and self-hosted runners.
The hybrid model typically involves using cloud runners for general-purpose builds, projects requiring quick feedback loops, or less sensitive applications. This leverages Atlassian's managed infrastructure, benefiting from its ease of use and inherent scalability for standard workloads. Concurrently, self-hosted runners are deployed for specialized workloads, resource-intensive tasks, builds that require secure access to internal networks, or projects with stringent security and compliance needs.
The hybrid approach is often the default and most robust strategy for large enterprises. By strategically combining cloud and self-hosted runners, organizations can achieve a level of flexibility, cost-efficiency, and security that neither option can provide in isolation. This allows them to effectively "optimize resources"
Implementing and Managing Your Flexible Runner Strategy
Once a runner strategy has been determined, effective implementation and ongoing management are paramount to maximizing its benefits. This involves practical steps for setup, dynamic scaling, comprehensive monitoring, and consistent maintenance to ensure the CI/CD pipeline remains robust and efficient.
Setting Up Self-Hosted Runners: A Practical Guide
Self-hosted runners are deployed directly on an organization's own infrastructure.
-
Registration: Navigate to the Bitbucket interface, specifically under Repository Settings, then select Runners, and click "Add Runner".
During this process, a name for the runner is provided, and labels are assigned. These labels are crucial for grouping runners and enabling the specification of which runner group should be used for particular steps within the pipeline configuration. -
Installation: Detailed setup guides are provided for various operating systems and runner types, including Linux Docker, Linux Shell, Windows, MacOS, and Linux Docker ARM64 Beta.
This typically involves installing necessary prerequisites, such as Docker or OpenJDK, and executing specific commands provided by Bitbucket to register and initiate the runner agent on the host machine. -
Configuration: The
bitbucket-pipelines.ymlfile must be configured to specify which self-hosted runner to use for a given step. This is achieved using theruns-onkeyword in conjunction with the assigned labels, directing the pipeline step to execute on the desired self-hosted environment.
Automating Scalability with Kubernetes Autoscaler
For organizations managing a large number of self-hosted runners, particularly in dynamic environments with fluctuating workloads, the Bitbucket Runners Autoscaler for Kubernetes is an invaluable tool.
Monitoring and Logging for Operational Excellence
Effective monitoring and logging are foundational for operational excellence in CI/CD pipelines.
-
Built-in Logging: Bitbucket Pipelines provides built-in logging features that automatically capture the output of each step in a pipeline.
Developers should write clear and informative log messages within their scripts to facilitate quick identification and debugging of errors. -
External Log Management: For more sophisticated logging and analysis requirements, self-hosted runners can be configured to expose build logs locally.
These logs can then be ingested into third-party log management tools such as Splunk or the ELK Stack Elasticsearch, Logstash, Kibana, enabling centralized log analysis and deeper insights. -
Performance Monitoring: Integrating external monitoring tools, including Datadog, New Relic, or Prometheus, allows for comprehensive tracking of pipeline performance metrics. This includes monitoring build success rates, duration of steps, and resource utilization.
Setting up alerts for anomalies in these metrics enables proactive issue resolution, preventing minor issues from escalating into major disruptions. -
Error Tracking and Custom Notifications: Error tracking systems like Sentry or Rollbar can be integrated directly into the Bitbucket Pipeline to capture exceptions and errors as they occur, providing valuable stack traces and contextual information for debugging.
Additionally, Bitbucket's webhooks or chatbot integrations can be utilized to create custom notifications for platforms like Slack or Microsoft Teams, providing real-time updates on build successes, failures, or deployments.
The detailed steps for setup, scaling, monitoring, and maintenance of self-hosted runners
Maintaining and Updating Your Runner Fleet
-
Regular Updates: It is critical to regularly update self-hosted runner versions. This ensures continued access to functionality, enables the adoption of performance enhancements, and incorporates vital security updates.
Neglecting updates can lead to compatibility issues, degraded performance, and even loss of functionality, such as the ability to interact with artifact and cache storage. -
Scheduled Maintenance: Planning updates during periods of low activity, such as off-peak hours or weekends, helps minimize disruption to development workflows.
Monitoring pipeline activity using Bitbucket APIs is a recommended practice to ensure no active builds are running before initiating maintenance procedures. -
Allowlisting IP Addresses: For runners operating behind a corporate firewall, it is essential to ensure that all necessary IP addresses for Bitbucket Pipelines and AWS S3, which handles artifacts and caches, are correctly allowlisted for both incoming and outgoing traffic.
This ensures seamless communication and prevents build failures due to network restrictions. -
Automated Patching: Implementing automated patching strategies for the runner host operating system and its dependencies can significantly reduce manual effort and ensure continuous security and stability of the build environment.
The emphasis on "regular updates"
Future-Proofing Your CI/CD with Atlas Bench
Bitbucket Pipelines provides powerful and flexible runner options that empower organizations to construct robust, scalable, and highly efficient CI/CD workflows. The strategic decision between cloud-hosted and self-hosted runners, or the adoption of a nuanced hybrid approach, depends on a careful and comprehensive evaluation of an organization's specific workload demands, cost considerations, security posture, and existing infrastructure capabilities.
By thoroughly understanding the unique advantages and inherent challenges associated with each runner type, and by diligently implementing best practices for optimization, monitoring, and ongoing maintenance, teams can unlock the full potential of Bitbucket Pipelines. This strategic approach facilitates faster development cycles, contributes to higher code quality, and enables more confident and reliable deployments, all of which are crucial for driving business agility and fostering continuous innovation.
Related work.
Licensing and renewals
License audit and true-up, renewal planning, tier and edition guidance, consolidation, and procurement handling across the Atlassian estate.
productBitbucket Pipelines
What Atlas Bench does with Bitbucket Pipelines: migration from external build tooling and connecting deployments to change control.
productEnterprise (Atlassian Cloud Enterprise)
What Atlas Bench does with Atlassian Cloud Enterprise: deciding whether the edition is warranted, and designing the multi-site and policy model it enables.
Read next.
Change Management in Jira Service Management: A Guide
See how to manage organizational change effectively with Jira Service Management, using proven strategies for lasting adoption across teams
April 16, 2026New Work Types in Jira Business Spaces
Learn how Jira's new work type hierarchy in business spaces gives non-technical teams better structure, and control over their work.
April 16, 2026Web Search in Rovo Agents: What It Is and How to Use It
See how web search in Rovo Agents works, how to set it up, and how teams are using it to bring live web context into their workflows.
April 13, 2026Real-Time Use Cases of Rovo AI in Jira and JSM
See how Atlassian Rovo is changing the way teams work in Jira and JSM in real time.
The blog, weekly.
One email a week with what we published. No drip sequence, and you can leave in a click.
Get an agent readiness assessment
Fixed scope. You get a findings report across identity, platform, and governance, an ownership gap analysis, and a sequenced plan for closing it.
By sending this you agree to our privacy policy.