Is there anyway to dynamically add tags to a job.....
# ask-community
m
Is there anyway to dynamically add tags to a job... from some op within the job itself? 😬
a
This is how I currently do it:
Copy code
@op
def do_something(context):
    context.instance.add_run_tags(context.run_id, new_tags={"key": "value"})
m
awesome, i'll give this a shot, thank you!