Add additional single work items that are not part of your release notes items

Sometimes we have work items that don't describe what has changed in the software but provide additional often internal information like test suites.

In this example we use the {{workItem}} (singular) helper to output additional work items.

Template


## New features

{{#workItems '$UserStory'}}

### {{{ field 'Title' }}}

{{/workItems}}

## Regression testing

{{#workItem 500}}  

### Test plan: {{field 'Title'}} 

{{/workItem}}

Work items

IdTitleWorkItemType
100🍇Story 100User Story
200🍈Story 200User Story
300🍊Story 300User Story
400🍋Story 400User Story

Other work items

IdTitleWorkItemType
500Test Suite 500Test Suite

Result

New features

🍇Story 100

🍈Story 200

🍊Story 300

🍋Story 400

Regression testing

Test plan: Test Suite 500