Hi all,
Is it possible to automate the following?
If ticket status changes to 'X', a new work item should be created on Azure DevOps board.
An example - Jira ticket status changed to 'Added to DevBoard', automation should create a Bug item on dedicated DevOps board. I would like the summary and the subject line to be transferred.
Did anyone try to automate something similar please?
Many Thanks
Hi @Tomasz Bis
Welcome to our Community.
Jira automation has the ability to trigger a Webhook (Azure DevOps REST API) when jira ticket is transitioned to a specific status. So don't worry about the implementation at Jira side.
If Azure DevOps platform has REST API to create bug items on dedicated DevOps board, then your requirement is feasible.
Thanks,
YY哥
Hi, Thanks for your answer.
Are you aware of any document that I can use by any chance to achieve mu goal please?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Tomasz Bis
Sorry, I haven't got any eperience of integrating with Azure DevOps Rest API. But you may do some research through https://learn.microsoft.com/en-us/rest/api/azure/devops/?view=azure-devops-rest-7.2.
Thanks,
YY哥
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Tomasz Bis ,
Yes, you can automate the creation of a new work item in Azure DevOps when a Jira ticket status changes using Jira Automation. Here’s how you can set it up:
Create Jira Automation Rule:
Configure Webhook Action:
Pass Jira Data to DevOps:
{ "title": "{{issue.summary}}", "description": "{{issue.description}}", "type": "Bug" }
Test and Validate:
This setup allows seamless integration between Jira and Azure DevOps, automating the creation of work items based on Jira status changes.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.