-
Notifications
You must be signed in to change notification settings - Fork 12
/
action.yml
28 lines (28 loc) · 826 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
name: Terraform Plan Comment
description: Post the output of `terraform plan` to a pull request comment.
author: Oliver Borchert
branding:
icon: git-pull-request
color: purple
inputs:
token:
description: The token to use for authenticating against the GitHub API.
required: true
planfile:
description: The path to the planfile whose changes to post.
required: true
terraform-cmd:
description: The command to execute for calling the Terraform binary.
required: true
default: terraform
working-directory:
description: The directory where the Terraform binary should be called.
required: true
default: "."
header:
description: The header to use for the pull request comment.
required: true
default: 📝 Terraform Plan
runs:
using: node20
main: dist/index.js