How to use regex pattern to match the branch name in Bamboo Data center

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Summary

The purpose of this KB is to provide few examples on how to use the regex pattern matching in Bamboo for matching the branch names.

Environment

This has been tested on Bamboo 9.6.4 but the solution will work for other supported version of Bamboo.

Solution

  1. One of the use cases of regex is to match the branch name as a variable in Bamboo, please see the example below ( here we are matching the branch name which starts with issue keyword )

1 ^.*issue.*

2. Another possible use case is during the creation of plan branches in Bamboo ( here we are creating a new branch in Bamboo when the source repository branch matches the keyword starting with text pssrv )

(Auto-migrated image: description temporarily unavailable)

3. If there are multiple branches for which the regex needs to be matched, then you can use the below

1 ^production.*|^main.*

ℹ️ Here branches have name starting with production and main

Please refer below 2 pages for generic syntax for regex matching

Pattern matching reference

Oracle regex pattern matching

Updated on April 2, 2025

Still need help?

The Atlassian Community is here for you.