Skip to content

Commit 7c8d426

Browse files
authored
Merge branch 'main' into feature/BCSS-21309-fobt-regression-scenario-6
2 parents b0c6951 + 52ecc12 commit 7c8d426

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/jira_confluence_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def determine_jira_reference_local(self) -> str:
158158
if branch.startswith("feature/"):
159159
match = re.search(r"feature\/([A-Za-z0-9]+-\d+)", branch)
160160
if match:
161-
branch = f"{self.jira_project_key}-{match.group(1)}"
161+
branch = f"{match.group(1)}"
162162

163163
if not self.is_valid_jira_reference(branch):
164164
return ""

0 commit comments

Comments
 (0)