From a33dc8bc93d127786b13a517c5c2960af31ec5b6 Mon Sep 17 00:00:00 2001 From: Lukasz Sielski Date: Thu, 19 Sep 2024 12:14:01 +0200 Subject: [PATCH] test --- scripts/az_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/az_cli.py b/scripts/az_cli.py index fff5a38..33f69c8 100644 --- a/scripts/az_cli.py +++ b/scripts/az_cli.py @@ -9,7 +9,7 @@ def tag_work_items(self, work_items_ids: list[str], tag: str): print(f'Trying to tag {work_item_id}') output = None try: - output = check_output(f'az boards work-item update --id {work_item_id} --fields "System.Tags={tag}', shell=True, stderr=subprocess.STDOUT) + output = check_output(f'az boards work-item update --id {work_item_id} --org https://dev.azure.com/lukaszadamsielski0187 --fields "System.Tags={tag}', shell=True, stderr=subprocess.STDOUT) update_result.update({work_item_id: output}) except CalledProcessError as e: print(f"Update process failed for {work_item_id}, error: {e}")