Release Note Examples

Example of release note #

Simple release note #

Template #

This is the latest build and contains the following items:
{{#forEach this.workItems}}
{{#if isFirst}}WorkItems {{/if}}
* {{this.id}} {{lookup this.fields 'System.Title'}}
{{/forEach}}

Build {{buildDetails.buildNumber}}
Branch {{buildDetails.sourceBranch}}

Result #

This is the latest release and contains the following items:
WorkItems 
* 83268 PO - Purchase Order Template - Project ID & Sub Project Name displayed on PO.

Build 2022.6.21.1
Branch $/XXX/Trunk/Main-Release

Example file #

simple

Full release note #

This is the latest build and contains the following items:
{{#forEach this.workItems}}
{{#if isFirst}}WorkItems {{/if}}
* {{this.id}} {{lookup this.fields 'System.Title'}}
{{/forEach}}

Global list of CS ({{commits.length}})
{{#forEach commits}}
{{#if isFirst}}Associated commits{{/if}}
* ID{{this.id}}: {{this.message}}
{{/forEach}}

Build {{buildDetails.buildNumber}}
Branch {{buildDetails.sourceBranch}}

Result #

Release note for Release from DEV to Main-Test
**Branch** $XXX/Trunk/Main-Test/Build 2021.9.1.1
# Global list of WI with PRs, parents and children
### WorkItems 
*  **14707**  PRO.6111-FRP.15 One task
*  **17091**  MDM4458 - one more task

# Global list of CS (3)
### Associated commits
* ** IDC1774** **:** Some comments
* ** IDC1773** **:** Some comments
* ** IDC1772** **:** Some comments

Build 2022.6.21.1
Branch $/XXX/Trunk/Main-Release

Example file #

full

Full sintax for release template we can find on template page Generate Release Notes (Crossplatform)

comments powered by Disqus