-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
52 lines (50 loc) · 1.55 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
49
50
51
52
name: "Summarize diffs of CloudFormation"
description: "GitHub Actions to summarize diffs of CloudFormation stack."
author: "taichi"
branding:
icon: "upload-cloud"
color: "orange"
inputs:
aws-region:
required: true
description: "AWS Region, e.g. ap-northeast-1"
cdk-outputs-directory:
required: false
description: "Name of the directory into which the cdk outputs."
default: "cdk.out"
stack-with-templates:
required: false
description: "Set one or more newline-delimited strings that pair the stack name with the template file path using =."
force-drift-detection:
required: false
description: "Request forced detection of drift for the stack"
default: "false"
enable-drift-detection:
required: false
description: "Checks whether your CloudFormation stacks' actual configuration differs."
default: "true"
drift-delay-milliseconds:
required: false
default: 3000
drift-maxAttempts:
required: false
default: 7
drift-timeout-milliseconds:
required: false
default: 360000
role-to-assume:
required: false
description: >-
Use the provided credentials to assume an IAM role and configure the Actions
environment with the assumed role credentials rather than with the provided
credentials
working-directory:
required: false
description: "Working directory of where to run the process."
github-token:
required: false
description: "The GitHub token used to post comment."
default: ${{ github.token }}
runs:
using: "node20"
main: "dist/index.js"