diff --git a/website/src/docs/experiments/remote-taskfiles.md b/website/src/docs/experiments/remote-taskfiles.md index 9eeb192df7..9c031e1d05 100644 --- a/website/src/docs/experiments/remote-taskfiles.md +++ b/website/src/docs/experiments/remote-taskfiles.md @@ -229,7 +229,8 @@ remote Taskfiles: Sometimes you need to run Task in an environment that does not have an interactive terminal, so you are not able to accept a prompt. In these cases you are able to tell task to accept these prompts automatically by using the `--yes` -flag or the `--trust` flag. The `--trust` flag allows you to specify trusted +flag or the `--trusted-hosts` flag. The `--trusted-hosts` flag allows you to +specify trusted hosts for remote Taskfiles, while `--yes` applies to all prompts in Task. You can also configure trusted hosts in your [taskrc configuration](#trusted-hosts) using `remote.trusted-hosts`. Before enabling automatic trust, you should: diff --git a/website/src/docs/reference/config.md b/website/src/docs/reference/config.md index 7222b71375..cf58ae8f52 100644 --- a/website/src/docs/reference/config.md +++ b/website/src/docs/reference/config.md @@ -194,3 +194,4 @@ temp-dir: .task # Enable experimental features experiments: REMOTE_TASKFILES: 1 +``` diff --git a/website/src/docs/reference/schema.md b/website/src/docs/reference/schema.md index 4358ef0be3..40d8205caa 100644 --- a/website/src/docs/reference/schema.md +++ b/website/src/docs/reference/schema.md @@ -735,6 +735,7 @@ tasks: ref: .ALLOWED_ENVS cmds: - ./deploy.sh +``` #### [`vars`](#variable)