Versions Compared

Key

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

Status
colourBlue
titleSINCE VERSION 1.0

Table of Contents

What is a Pipeline Util?

...

Code Block
languageyaml
pipeline:  
  - log:  
      message: "The current date is: ${@date.now()}"  

Output:

Code Block
"The current date is: 24.07.2023, 16:11:33"

Examples for @list

Code Block
languageyaml
vars:
  cities: "Munich, Bratislava, New York"
pipeline:
  - log: 
      message: ${@list.size(vars.cities)}

...