Signature
| Helper | nodeHelper | 
| Signature | getLabel(String label) | 
| Description | Returns a label
 | 
| Introduced in | 0.8 | 
Example use
// if the replica is a new feature request, label the issue 'uservoice'
if (replica.issueType.name == "New Feature") {
   issue.labels += nodeHelper.getLabel("uservoice")
}