Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure DevOps and Outlook Integration

Looking for information on how to integrate VSTS to Office365: Outlook. Essentially looking for a method whereby a team member that does a great amount of fix-it tickets can drop them into the Azure DevOps Project from Outlook as many of those tickets get passed to her from users through email.

A right click >> add new task from Outlook to Azure DevOps would be ideal.

like image 827
Ajax Avatar asked Nov 13 '17 20:11

Ajax


People also ask

Is Microsoft discontinuing Azure DevOps?

It's been mentioned that the end of life for Azure DevOps Server is near 2024, and that there won't be a newer version.

Does Office 365 include Azure DevOps?

Azure DevOps Service is a hosted version of Azure DevOps Server (TFS). Currently it is not possible to connect Azure DevOps Service using O365 GCC account. But if you have O365, then you can use it to connect to Azure DevOps Service.

How do I use Azure DevOps integration tool for Office 2019?

Installed Azure DevOps Office Integration 2019 (free). The only way to get the Azure DevOps Office Integration plug-in is by installing one of the latest editions of Visual Studio or the Azure DevOps Office Integration installer. The plug-in supports connection to Azure Boards and Azure DevOps Server from Excel.


1 Answers

There is no built-in feature, but you can work miracles with Microsoft Flow, basically, the If This Then That from Microsoft. it comes with built-in tasks to trigger on Outlook/Office 365. Moving an email to a specific folder or tagging it with a specific tag would be enough for Flow to trigger a rule.

This template rule uses the "When an email is tagged" and this template rule creates a Bug work item based on a trigger. Combining these two should let you achieve what you're looking for.

If you want integration in the Outlook Windows client, then there are a couple of commercial options available: There are a couple of add-ins for Outlook. Team Companion, TeamLook and TFS Work Item from Outlook spring to mind.

An alternative option is to use an Azure Function which is triggered by Azure DevOps Service Hooks. Not sure if you can bind an Azure Function to an Office 365 mailbox. Flow could act as an intermediary here as well.

like image 59
jessehouwing Avatar answered Oct 15 '22 13:10

jessehouwing