Hello! is there a way to add tags to a flow run cr...
# ask-community
p
Hello! is there a way to add tags to a flow run created with
prefect.deployments.run_deployment
?
1
k
I don't see it in the source code. (cannot pass tags at the time of run_deployment). So if you need more tags in addition to those included on the Deployment, You can use https://docs.prefect.io/api-ref/prefect/client/#prefect.client.orion.OrionClient.update_flow_run On the flow run you get by running the deployment. (or make a request / PR to perform tag addition during run_deployment)
🙌 1
p
nice! thank you!