Skip to content

Commit

Permalink
full-loop: fail eagerly on empty
Browse files Browse the repository at this point in the history
  • Loading branch information
thypon committed May 30, 2024
1 parent 618b786 commit 859e881
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/full-loop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ jobs:
gh_to_slack_user_map: ${{ secrets.GH_TO_SLACK_USER_MAP }}
- run: |
set -e
echo ${{ steps.action.outputs.reviewdog-findings }}
if ((${{ steps.action.outputs.reviewdog-findings }} < 106)); then
if ((${{ fromJson(steps.action.outputs.reviewdog-findings) }} < 106)); then
echo "Too few reviewdog findings"
exit 1
fi
Expand Down

0 comments on commit 859e881

Please sign in to comment.