Configure the output section
The output section defines what users see after a template runs. You can display text messages, reference user input from parameters, show job execution data from steps, and provide external links.
The output section supports two types of content:
text: Displays text blocks with titles and markdown content.links: Displays clickable buttons that open external URLs.
- Output text
Useoutput.textto display information to the user after the template runs. Each text block has atitleandcontentfield. Thecontentfield supports markdown formatting. - Output links
Useoutput.linksto display clickable buttons. Each link has atitleandurlfield. You can optionally set aniconfield. - Reference parameters in output
You can reference any value the user entered in theparameterssection by using the${{ parameters.<field_name> }}syntax. - Reference step output in output
After therhaap:launch-job-templateaction runs, the step output includes job execution data. Reference this data using the${{ steps['<step-id>'].output.data.<field> }}syntax.