Skip to content

Commit

Permalink
chore: fix syntax error in diff workflow [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
xiehan authored Dec 20, 2023
1 parent b4d0dbd commit 3e49216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/diff-cdktf-stacks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
stackName: "${{matrix.stack}}"
})
- name: Fail this check if the plan was not successful
if: ${{ steps.plan.outcome != "success" }}
if: ${{ steps.plan.outcome }} != 'success'
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
Expand Down

0 comments on commit 3e49216

Please sign in to comment.