From 29195df70cf4127cb95bc5d505fbe17b6d8d7aa2 Mon Sep 17 00:00:00 2001 From: Dave Arnold Date: Thu, 15 Aug 2024 10:22:42 -0700 Subject: [PATCH] Refactor image pipeline module names and update workflows --- workflows/terraform-plan.yaml.tpl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/workflows/terraform-plan.yaml.tpl b/workflows/terraform-plan.yaml.tpl index 5d3d322..c941500 100644 --- a/workflows/terraform-plan.yaml.tpl +++ b/workflows/terraform-plan.yaml.tpl @@ -76,14 +76,14 @@ jobs: uses: CSVD/gh-actions-github-script@v6 if: github.event_name == 'pull_request' with: - github-token: ${{ secrets.GH_TOKEN }} + github-token: $${{ secrets.GH_TOKEN }} script: | - const output = `#### Terraform Format and Style 🖌\`${{ steps.fmt.outcome }}\` - #### Terraform Initialization ⚙️\`${{ steps.init.outcome }}\` - #### Terraform Validation 🤖\`${{ steps.validate.outcome }}\` + const output = `#### Terraform Format and Style 🖌\`$${{ steps.fmt.outcome }}\` + #### Terraform Initialization ⚙️\`$${{ steps.init.outcome }}\` + #### Terraform Validation 🤖\`$${{ steps.validate.outcome }}\` #### Terraform Plan: - ${{ steps.plan.outcome }} - *Pushed by: @${{ github.actor }}, Action: \`${{ github.event_name }}\`*`; + $${{ steps.plan.outcome }} + *Pushed by: @$${{ github.actor }}, Action: \`$${{ github.event_name }}\`*`; github.rest.issues.createComment({ issue_number: context.issue.number,