Files
attune/packs.dev/examples/basic-pack/actions/echo.yaml

28 lines
430 B
YAML

name: echo
ref: basic-pack.echo
description: "Echo a message"
runner_type: shell
enabled: true
entry_point: echo.sh
parameters:
type: object
properties:
message:
type: string
description: "Message to echo"
default: "Hello from basic-pack!"
required: []
output:
type: object
properties:
result:
type: string
description: "The echoed message"
tags:
- basic
- shell
- example