Return ​Return

yaml
type: "io.kestra.plugin.core.debug.return"
yaml
id: debug_value
namespace: company.team

tasks:
  - id: return
    type: io.kestra.plugin.core.debug.Return
    format: "{{ task.id }} > {{ taskrun.startDate }}"

yaml
id: "return"
type: "io.kestra.plugin.core.debug.return"
id: compute_header
type: io.kestra.plugin.core.debug.Return
format: >-
    {%- if inputs.token is not empty -%}
    Bearer {{ inputs.token }}
    {%- elseif inputs.username is not empty and inputs.password is not empty -%}
    Basic {{ (inputs.username + ':' + inputs.password) | base64encode }}
    {%- endif -%}
Properties