From d2727a2eb0024e9e9c7d8bffa0edee1517b1fefc Mon Sep 17 00:00:00 2001 From: Zander Franks Date: Wed, 3 May 2023 17:57:32 -0500 Subject: [PATCH] chore: add docs Signed-off-by: Zander Franks --- docs/features/software-templates/writing-templates.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/features/software-templates/writing-templates.md b/docs/features/software-templates/writing-templates.md index 15e6a833cc..da8e54875b 100644 --- a/docs/features/software-templates/writing-templates.md +++ b/docs/features/software-templates/writing-templates.md @@ -510,10 +510,8 @@ take a look at, or you can Each individual step can output some variables that can be used in the scaffolder frontend for after the job is finished. This is useful for things -like linking to the entity that has been created with the backend, and also -linking to the created repository. - -The main two that are used are the following: +like linking to the entity that has been created with the backend, linking +to the created repository, or showing Markdown text blobs. ```yaml output: @@ -523,6 +521,10 @@ output: - title: Open in catalog icon: catalog entityRef: ${{ steps['register'].output.entityRef }} # link to the entity that has been ingested to the catalog + text: + - title: More data + data: | + Access the [remote repository](${{ steps['publish'].output.remoteUrl }}). ``` ## The templating syntax