forked from youyo/aws-cdk-github-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (31 loc) · 773 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
name: "AWS CDK Actions"
description: "Runs AWS-CDK via GitHub Actions."
author: "youyo <[email protected]>"
branding:
icon: "terminal"
color: "yellow"
inputs:
cdk_stack:
description: "AWS CDK stack name to execute."
default: "*"
cdk_version:
description: "AWS CDK version to install."
default: "latest"
cdk_subcommand:
description: "AWS CDK subcommand to execute."
required: true
working_dir:
description: "AWS CDK working directory."
default: "."
actions_comment:
description: "Whether or not to comment on pull requests."
default: true
debug_log:
description: "Enable debug-log"
default: false
outputs:
status_code:
description: "Returned status code."
runs:
using: "docker"
image: "./Dockerfile"