Is it possible to generate a summary report of Flow executions once we integrate them with GitLab
Can you explain what you mean by summary report of executions?
can we run multiple flows as a bundleβ¦
Today, you would need one webhook per flow.
But you could create a Collection with requests for each flow webhook, and use a collection runner to trigger the flows as a bundle.
Thank you so much @lunar-module-geosci1 for your input. I meant summary of passed and failed flows. Basically my requirement is I want to get to know
What are successfully executed flows.
What are the failed flows.
I am planning to configure git lab to run the flows after deployment happen in Test env. Then based on the results of flow results , I should able to make the decision to merge the code to production.
Currently flows invoked with a webhook are fire and forget. There is no API yet to retrieve the result of a flow execution after the fact. You can however externalize the results of a flow yourself to a database for example and read the results from there.
We are working on better support for use cases like this for test automation. Iβm curious if you know for these test cases how long would each flow run for?