forked from noverant/aws-cdk-github-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
34 lines (34 loc) · 869 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
34
name: 'AWS CDK GitHub Actions (Java)'
description: 'Runs Java AWS-CDK via GitHub Actions'
author: '[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
cdk_args:
description: 'AWS CDK subcommand arguments.'
required: false
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'