-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
33 lines (33 loc) · 935 Bytes
/
action.yml
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
---
name: "Sceptre Github CI Action"
description: "Run Sceptre with a GitHub Action"
branding:
icon: 'upload-cloud'
color: 'gray-dark'
inputs:
sceptre_subcommand:
description: "Sceptre subcommand to execute"
required: true
sceptre_version:
description: "Version of Sceptre to install"
required: false
default: "2.5.0"
sceptre_directory:
description: "Directory to execute Sceptre commands from"
required: false
default: ""
sceptre_troposphere:
description: "Specify if troposphere templates are used - 'true' or 'false'"
required: false
default: "false"
sceptre_troposphere_version:
description: "Version of troposphere to install"
required: false
default: "2.7.1"
sceptre_plugins:
description: "List of packages (and optionally, versions) to be passed to 'pip install'"
required: false
default: ""
runs:
using: "docker"
image: "./Dockerfile"