Description
Provide dynamic description for a run, which will be shown in the UI. This is useful for providing more context about a run. Every step in a pipeline can include a run description.
Usage
Bash |
|
---|---|
PowerShell |
|
Full YAML Example
name: UpdateRunDescription steps: - name: update_l type: Bash execution: onStart: - msg="Run description updated from step $step_id" - update_run_description "$msg" - name: update_2 type: Bash configuration: inputSteps: - name: update_l execution: onStart: - msg="Run description updated from step $step_id" - update_run_description "$msg"