Skip to content

Commit 0fed1ff

Browse files
committed
chore: fix pana
1 parent 89a58ac commit 0fed1ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/pana/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ runs:
6262
shell: bash
6363
run: |
6464
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
65-
if (( $PERCENTAGE < ${{ inputs.panaThreshold }} ))
65+
if (( $PERCENTAGE < ${{ inputs.min_score }} ))
6666
then
67-
echo "Score too low ($PERCENTAGE % is less than the expected ${{ inputs.panaThreshold }} %)!"
67+
echo "Score too low ($PERCENTAGE % is less than the expected ${{ inputs.min_score }} %)!"
6868
exit 1
6969
fi
7070

0 commit comments

Comments
 (0)