We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89a58ac commit 0fed1ffCopy full SHA for 0fed1ff
.github/actions/pana/action.yml
@@ -62,9 +62,9 @@ runs:
62
shell: bash
63
run: |
64
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
65
- if (( $PERCENTAGE < ${{ inputs.panaThreshold }} ))
+ if (( $PERCENTAGE < ${{ inputs.min_score }} ))
66
then
67
- echo "Score too low ($PERCENTAGE % is less than the expected ${{ inputs.panaThreshold }} %)!"
+ echo "Score too low ($PERCENTAGE % is less than the expected ${{ inputs.min_score }} %)!"
68
exit 1
69
fi
70
0 commit comments