Skip to content

Commit

Permalink
removed parentheses for if
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardKoschicek committed Oct 18, 2023
1 parent 7365fec commit 6163c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check_updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
echo "check_result=$check_result" >> $GITHUB_OUTPUT
call_delploy:
needs: [check_for_updates]
if: ${{ fromJson(needs.check_for_updates.outputs.check_result == 'need to upgrade') }}
if: needs.check_for_updates.outputs.check_result == 'need to upgrade'
uses: ./.github/workflows/starter.yaml
secrets: inherit

0 comments on commit 6163c2d

Please sign in to comment.