-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction.yml
More file actions
35 lines (35 loc) · 1.08 KB
/
action.yml
File metadata and controls
35 lines (35 loc) · 1.08 KB
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
name: "GitHub Action for Extracting Atmos Settings"
description: "A GitHub Action for Extracting Atmos Settings from Metadata"
author: hello@cloudposse.com
branding:
icon: "terminal"
color: "white"
inputs:
component:
description: The atmos component extract the settings for.
required: false
stack:
description: The atmos stack extract the settings for.
required: false
settings-path:
description: The settings path using JSONPath expressions.
required: false
settings:
description: The settings to extract.
required: false
process-templates:
description: "Enable/disable processing of Go templates in Atmos stacks manifests."
required: false
default: "true"
process-functions:
description: "Enable/disable processing of Terraform functions in Atmos stacks manifests."
required: false
default: "true"
outputs:
value:
description: "The value of the setting when a single setting is returned."
settings:
description: "The settings values when multiple settings are returned."
runs:
using: "node20"
main: "dist/index.js"