Skip to content

Commit 2504ce9

Browse files
committed
feat: add xatu-sidecar support for devnet branches
Append -xatu-sidecar suffix to devnet branch names when processing sidecar variants to ensure proper naming convention
1 parent 3ed49f9 commit 2504ce9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

generate_config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ def generate_config():
111111
if client_name in SIDECAR_VARIANTS:
112112
if branch_spec == 'unstable':
113113
process_branch(client_name, default_repo, branch_spec, "xatu-sidecar-unstable", config_list)
114+
elif 'devnet' in branch_spec:
115+
# For devnet branches, append -xatu-sidecar to the safe branch name
116+
process_branch(client_name, default_repo, branch_spec, f"{safe_branch_name}-xatu-sidecar", config_list)
114117

115118
# Process alternate repositories if they exist
116119
if 'alt_repos' in client_config:

0 commit comments

Comments
 (0)