diff --git a/scripts/auto_release/PythonSdkLiveTest.yml b/scripts/auto_release/PythonSdkLiveTest.yml index 0930961468d3..433ecaa81a4d 100644 --- a/scripts/auto_release/PythonSdkLiveTest.yml +++ b/scripts/auto_release/PythonSdkLiveTest.yml @@ -75,6 +75,7 @@ jobs: export NEW_BRANCH=`sed -n '1p' $output_path/output.txt` export TARGET_BRANCH=`sed -n '2p' $output_path/output.txt` export ISSUE_LINK=$(ISSUE_LINK) + export PIPELINE_LINK=$(PIPELINE_LINK) export USR_NAME=$(USR_NAME) export USR_TOKEN=$(USR_TOKEN) export TEST_RESULT=$test_result diff --git a/scripts/auto_release/create_auto_release_pr.py b/scripts/auto_release/create_auto_release_pr.py index 99391623fe25..9dafa7213691 100644 --- a/scripts/auto_release/create_auto_release_pr.py +++ b/scripts/auto_release/create_auto_release_pr.py @@ -8,7 +8,7 @@ def main(): pr_title = "[AutoRelease] {}(Do not merge)".format(os.getenv('NEW_BRANCH')) pr_head = "{}:{}".format(os.getenv('USR_NAME'), os.getenv('NEW_BRANCH')) pr_base = os.getenv('TARGET_BRANCH') - pr_body = "{} \n{}".format(os.getenv('ISSUE_LINK'), os.getenv('TEST_RESULT')) + pr_body = "{} \n{} \n{}".format(os.getenv('ISSUE_LINK'), os.getenv('TEST_RESULT'), os.getenv('PIPELINE_LINK')) res_create = api.pulls.create(pr_title, pr_head, pr_base, pr_body) pr_number = res_create.number