File: action_v2.yaml

package info (click to toggle)
python-mistralclient 1%3A3.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 952 kB
  • sloc: python: 9,335; sh: 195; makefile: 26
file content (20 lines) | stat: -rw-r--r-- 292 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
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 %>