Does anyone know if it's possible to run a flow wi...
# ask-community
s
Does anyone know if it's possible to run a flow with dynamic tags, something like this:
Copy code
tag1 = "mytag1"
tag2 = "mytag2"
with tags(f"{tag1}, {tag2}"):
        state = my_flow()
Or maybe another way to do it?
The
tags
context appends to existing tags. You will need to create a new tag context if you dont want to inherit existing tags. Examples in the link.
s
@Deceivious Thank you!