deb-mistral/mistral/tests/resources/action_v2.yaml
Nikolay Mahotkin b4a7ebeb01 Changing YAQL syntax delimeters
* Inline YAQL delimeters are changed on '<%' and '%>'

Implements blueprint yaql-delimiters

Change-Id: I31fbf5175d10684e7799e835d175517d2dadab9b
2015-02-20 15:40:24 +03:00

22 lines
308 B
YAML

---
version: "2.0"
greeting:
description: "This action says 'Hello'"
tags: [hello]
base: std.echo
base-input:
output: 'Hello, <% $.name %>'
input:
- name
output:
string: <% $.output %>
farewell:
base: std.echo
base-input:
output: 'Bye!'
output:
info: <% $.output %>