62332dfd2c
* Adjust all test examples to new YAQL syntax in python-mistralclient Change-Id: I387b4e6602736c2230ee02d1023ba9e924068742
21 lines
292 B
YAML
21 lines
292 B
YAML
---
|
|
version: "2.0"
|
|
|
|
greeting:
|
|
description: "This action says '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 %>
|
|
|