generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
48 lines (39 loc) · 1.11 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: CDK Plan Action
description: Comment cdk diff to pr
author: tsuba3
inputs:
cdk-command:
required: false
description: 'CDK command to write templates to cdk.out'
default: 'npx cdk synth'
cdk-out-dir:
required: false
description: 'Directory of the synthesized cloud assembly'
default: 'cdk.out'
enable-drift-detection:
required: false
description: 'Whether run drift detection'
default: 'true'
pr-number:
required: false
description: PR number to comment
default: ${{ github.event.pull_request.number }}
aws-region:
required: true
description: 'AWS region'
comment-title:
required: false
description: 'Title of bot comment'
default: '🌎 Cloudformation Stack Diff'
replace-comments:
required: false
default: 'true'
description: 'Remove previous comments'
outputs:
edited-stack-count:
description: 'The number of stacks which will be updated or created.'
stack-drift-detected:
description: 'true if stack drift detection is enabled and some stacks drifts, false otherwise.'
runs:
using: 'node16'
main: 'dist/index.js'