### Description In the [docs](https://taskfile.dev/usage/#warning-prompts), it's stated that a `prompt` can be skipped with `--yes`. Is this also possible when calling another task with `task: taskname`? If yes, how? ### Version 3.43.3 ### Operating system macOS ### Experiments Enabled _No response_ ### Example Taskfile ```YAML # https://taskfile.dev version: '3' tasks: foo: cmds: - for: var: CLI_ARGS task: bar vars: CLI_ARGS: '{{ .ITEM }}' bar: internal: true prompt: Are you sure? cmds: - echo 'Hello world' vars: CLI_ARGS: '{{ .CLI_ARGS }}' ```