1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00
Files
task/testdata/include_with_vars_multi_level/lib/Taskfile.yml
2024-03-10 17:28:04 +00:00

10 lines
130 B
YAML

version: "3"
vars:
RECEIVER: '{{ .RECEIVER | default "world" }}'
tasks:
greet:
cmds:
- echo 'Hello {{.RECEIVER}}'