Create a link to a work item in Azure DevOps

When exporting work items via Bravo Notes you may want to include links back to the original work item in Azure DevOps.

This might come in handy if you generate internal release notes or planning documents where all readers also have access to Azure DevOps. Having those links in the generated document allows readers to just click a link and get all information about a work item if needed.

To create a link to a work item just use the link helper in your template like this

{{#workItems}}
- {{#link}}{{ field 'Title' }}{{/link}}
{{/workItems}}

Here is another example where we output the title and the id of a work item but just make the id a link back to the work item in Azure DevOps.

{{#workItems}}
- {{ field 'Title' }} - {{#link}}{{ field 'Id' }}{{/link}}
{{/workItems}}
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us