-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
34 lines (34 loc) · 887 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: '.net AWS CDK GitHub Actions'
description: 'Runs .net based AWS-CDK via GitHub Actions.'
author: 'P47_Phoneix <michaelconne@gmail.com>'
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'