From 6cb54dbd0b33855d56d8550a992c88dadd145a75 Mon Sep 17 00:00:00 2001 From: Nicholas Drone <32464738+ndrone-kr@users.noreply.github.com> Date: Thu, 13 May 2021 18:20:26 -0400 Subject: [PATCH] Update readme example (#86) adds code styling around validation status, and fixes the code block for the issue body creation. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4923170..6820f27 100644 --- a/README.md +++ b/README.md @@ -115,12 +115,14 @@ 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.outputs.stdout }}\` #### Terraform Plan 📖\`${{ steps.plan.outcome }}\`
Show Plan - \`\`\`${process.env.PLAN}\`\`\` + \`\`\`\n + ${process.env.PLAN} + \`\`\`