generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
32 lines (32 loc) · 1.44 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
name: 'terraform-plan-action'
description: 'This action does a plan of terraform and then posts the plan and status back to the pull request checks endpoint'
author: 'HylandSoftware'
inputs:
args:
required: true
description: 'The string of the terraform plan arguments ''terraform plan -no-color'' will be pre-pended to this argument.'
token:
required: true
description: 'The github token to use to post back to the checks endpoint.'
working-directory:
required: true
description: 'The path to the terraform working directory. This is the path to your terraform code, not to the terraform binary.'
debug:
required: false
description: 'If set to true, will set the TF_LOG environment variable to DEBUG on the terraform plan process to dump debug output.'
default: false
continue-on-error:
required: false
description: 'Whether or not the action should set the failure status if the plan fails. This will not affect the check being set witht he plan results.'
default: false
report-title:
required: false
description: 'The name of the terraform plan to use when posting the results to the Pull Request'
default: 'Terraform Plan Report'
save-directory:
required: false
description: 'The directory path to store the full stdout / stderr from the terraform plan execution. A std.out and std.err file will be created with the data.'
default: ''
runs:
using: 'node16'
main: 'dist/index.js'