Skip to content

Commit

Permalink
Refactor image pipeline module names and update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Arnold committed Aug 15, 2024
1 parent 99a34df commit 29195df
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions workflows/terraform-plan.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 29195df

Please sign in to comment.