Skip to content

Commit

Permalink
Add missing dollar sign
Browse files Browse the repository at this point in the history
  • Loading branch information
Hind-M committed Feb 7, 2024
1 parent 5b824eb commit 91ee94b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/label_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
done
echo "NB_RELEASE_LABELS : '$NB_RELEASE_LABELS'"
if [ NB_RELEASE_LABELS -eq 0 ]; then
if [ $NB_RELEASE_LABELS -eq 0 ]; then
echo "PR has no release labels. Please add a label of release type."
exit 1
elif [ NB_RELEASE_LABELS -gt 1 ]; then
elif [ $NB_RELEASE_LABELS -gt 1 ]; then
echo "PR has multiple release labels. Please remove all but one label."
exit 1
fi

0 comments on commit 91ee94b

Please sign in to comment.