From bfb54fb024bf110b03bd2314774ee0695b411f3f Mon Sep 17 00:00:00 2001 From: Rishav Dhar <19497993+rdhar@users.noreply.github.com> Date: Sun, 8 Sep 2024 18:52:16 +0100 Subject: [PATCH] update readme with new input parameter Signed-off-by: Rishav Dhar <19497993+rdhar@users.noreply.github.com> --- README.md | 1 + action.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 18d0317c..b82ee8b2 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,7 @@ In order to locally decrypt the TF plan file, use the following command (noting | `encrypt_passphrase`
Example: `${{ secrets.KEY }}` | String passphrase to encrypt the TF plan file. | | `fmt_enable`
Default: `true` | Boolean flag to enable TF fmt command and display diff of changes. | | `label_pr`
Default: `true` | Boolean flag to add PR label of TF command to run. | +| `plan_parity`
Default: `false` | Boolean flag to compare previous TF plan file with current plan before applying in a queue. | | `tf_tool`
Default: `terraform` | String name of the TF tool to use and override default assumption from wrapper environment variable. | | `tf_version`
Example: `~>` 1.8.0 | String version constraint of the TF tool to install and use. | | `update_comment`
Default: `false` | Boolean flag to update existing PR comment instead of creating a new comment and deleting the old one. | diff --git a/action.yml b/action.yml index fe0f5f4e..ed6bb063 100644 --- a/action.yml +++ b/action.yml @@ -17,7 +17,7 @@ inputs: required: false default: "true" plan_parity: - description: Boolean flag to compare previous TF plan file with current plan before applying. + description: Boolean flag to compare previous TF plan file with current plan before applying in a queue. required: false default: "false" encrypt_passphrase: