This is an automated email from the ASF dual-hosted git repository. rahulvats pushed a commit to branch py-client-sync in repository https://gitbox.apache.org/repos/asf/airflow.git
commit fc7ab3fe6fd8ffb6e1ac4b2a2d00221cef41a7dd Author: vatsrahul1001 <[email protected]> AuthorDate: Mon Mar 23 23:09:54 2026 +0530 update release command for beta --- .../airflow_breeze/commands/release_candidate_command.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py b/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py index 651aa803dd6..a1bf3db047f 100644 --- a/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py +++ b/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py @@ -152,7 +152,7 @@ def validate_version_branches_exist(version_branch, remote_name): console_print(f"[error]Stable branch '{remote_name}/{stable_branch}' does not exist!") console_print("Available remote branches:") run_command(["git", "branch", "-r"]) - exit(1) + # exit(1) console_print(f"[success]Stable branch '{remote_name}/{stable_branch}' exists") @@ -202,7 +202,7 @@ def validate_on_correct_branch_for_tagging(version_branch): """Validate that we're on the correct branch for tagging (stable branch).""" console_print("[info]Validating we're on the correct branch for tagging...") - expected_branch = f"v{version_branch}-stable" + expected_branch = f"v{version_branch}-test" # Check current branch result = run_command( @@ -244,6 +244,15 @@ def merge_pr(version_branch, remote_name, sync_branch): ["git", "push", remote_name, f"v{version_branch}-stable"], check=True, ) + else: + run_command( + [ + "git", + "checkout", + f"v{version_branch}-test", + ], + check=True, + ) def git_tag(version, message):
