Skip to content

Commit

Permalink
Merge pull request #31 from LukaszSielski/extract_commons
Browse files Browse the repository at this point in the history
test
  • Loading branch information
LukaszSielski authored Sep 19, 2024
2 parents 6d960e6 + a33dc8b commit 50815a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/az_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down

0 comments on commit 50815a1

Please sign in to comment.