TEXT

yaml
name: "input_TEXT" inputs: first_field: name: "Text field #1" required: true second_field: name: "Text field #2" default: "Second text field" third_field: name: "Text field #3" info: "This is an example description for the text field above." execute_commands: - echo $first_field - echo $second_field - echo $third_field docker_image_name: "ubuntu" docker_image_tag: "latest"

Here we can see three text inputs:

  • the first is mandatory (required: true)
  • the second has a default value entered
  • the third has an info box with a description

Image loading...Custom action with TEXT inputs

Hint
This is default input if no type is defined.

Last modified on Sep 23, 2024