Hello! is there a way to add tags to a flow run created with
prefect.deployments.run_deployment
?
✅ 1
k
Kevin Wang
10/12/2022, 7:05 PM
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)