Home > OS >  How to detect events in an Azure Devops Board extension
How to detect events in an Azure Devops Board extension

Time:10-01

I'm trying to create an Azure DevOps Board extension that detects the main work item events: item created, assigned/unassined to user, added to sprint, state change (todo -> wip -> finished), etc.

The equivalent Jira plugin can be easily developed following this guide: https://developer.atlassian.com/server/jira/platform/writing-jira-event-listeners-with-the-atlassian-event-library/

However in the case of Azure Devops Boards I can't finde any clear indication to do this. Could you provide some sample/hint/documentation to implement this?

CodePudding user response:

You won't be able to use an extension to do this. Extensions are really just front end components. You'll have to use a service hook with a webhook.

https://learn.microsoft.com/en-us/azure/devops/service-hooks/services/webhooks?view=azure-devops

  • Related