Hi, As there's no any direct integration from Azure DevOps to SharePoint, I've created a powerautomate flow to create a link in the work item which directs to a sharepoint folder which is created in the background upon on saving the work item. But the flow is really slow and I would like to add a button to the work item that will trigger the particular flow, so the link will be appear upon on clicking the button. Any ideas on a work around for this?
I refered this to create the flow
The thing is, the link won't appear when clicking the button, the flow will still need to run to create the folder and then update the work item.
An avenue to explore, is change your flow to be triggered by an HTTP Request, then look at using Azure DevOps webhooks to call your flow. https://learn.microsoft.com/en-us/azure/devops/service-hooks/services/webhooks?view=azure-devops
I suspect this may quicker than the On Item Created trigger. And if not, then you can look to add a link to your flow with the same HTTP Request trigger, to your work item.