Versions Compared

Key

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

...

Expand
titlePrint all unique comment author names with format "#. Name"
Code Block
languagexml
{{setVariable "commentAuthors" (pluck issue.comment "author.displayName")}}
{{#each (unique commentAuthors)}}
{{add @index 1}}. {{this}}
{{/each}}
Expand
Access outer variables from within each
titleCheck if an issue is older than 14 days
Code Block
languagexml
{{setVariable "14DaysAgo" (subtractDay now 14)}}
{{#if (isBeforeDay issue.created.raw 14DaysAgo)}}
<!-- ... -->
{{/if}}
Expand
Code Block
{{#or (eq "a" "b") (eq "c" "d") (eq "e" "f")}}
<!-- -->
{{/or}}