-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathaction-type.hbs
37 lines (25 loc) · 966 Bytes
/
action-type.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
title: "{{{frontmatterTitle}}}"
tocTitle: "`{{{name}}}` {{{kind}}}"
---
# {{{frontmatterTitle}}}
## Description
{{{docs}}}
Below is the full schema reference for the action. For an introduction to configuring Garden, please look at our [Configuration
guide](../../../using-garden/configuration-overview.md).
The [first section](#complete-yaml-schema) contains the complete YAML schema, and the [second section](#configuration-keys) describes each schema key.
{{#if hasOutputs}}
`{{{name}}}` actions also export values that are available in template strings. See the [Outputs](#outputs) section below for details.
{{/if}}
## Complete YAML Schema
The values in the schema below are the default values.
```yaml
{{{yaml}}}
```
## Configuration Keys
{{{markdownReference}}}
{{#if hasOutputs}}
## Outputs
The following keys are available via the `${actions.{{{kindLower}}}.<name>}` template string key for `{{{name}}}`
action.
{{{outputsReference}}}{{/if}}