From 453864b4d0430939479a601039c053830f9ad006 Mon Sep 17 00:00:00 2001 From: Scott Merrill Date: Mon, 7 Mar 2022 11:04:19 -0500 Subject: [PATCH] Improve output for PR comment (#129) --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c3e4ed..7c5f8c4 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,15 @@ steps: script: | const output = `#### Terraform Format and Style 🖌\`${{ steps.fmt.outcome }}\` #### Terraform Initialization ⚙️\`${{ steps.init.outcome }}\` - #### Terraform Validation 🤖\`${{ steps.validate.outputs.stdout }}\` + #### Terraform Validation 🤖\`${{ steps.validate.outcome }}\` +
Validation Output + + \`\`\`\n + ${{ steps.validate.outputs.stdout }} + \`\`\` + +
+ #### Terraform Plan 📖\`${{ steps.plan.outcome }}\`
Show Plan