Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titlePrint only parts of an array
Code Block
<!-- Prints only the first/last name of the assignee, instead of the whole name -->
{{{before (split issue.assignee ' ') 1}}}

{{{after (split issue.assignee ' ') 1}}}
Expand
titleShow me summaries of all linked issues / subtasks of an issue
Code Block
<!-- Prints all issue summaries of linked issues -->
{{#each issue.issuelinks}}

{{this.inwardIssue.fields.summary}}

{{/each}}

<!-- Prints all subtasks of an issue -->

{{#each issue.subtasks}}

{{this.fields.summary}}

{{/each}}