fixed langauge logic

This commit is contained in:
Lucas Gravley 2020-07-20 14:52:56 -05:00
parent 4b6d5433f1
commit 7e89fa681c

View file

@ -830,7 +830,7 @@ CallStatusAPI() {
-H 'content-type: application/json' \
-d "{ \"state\": \"$STATUS\",
\"target_url\": \"https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID\",
\"description\": \"$MESSAGE\", \"context\": \" --> Lint-Language/$LANGUAGE\"
\"description\": \"$MESSAGE\", \"context\": \"--> Linted: $LANGUAGE\"
}" 2>&1)
#######################
@ -892,10 +892,18 @@ Footer() {
CallStatusAPI "$LANGUAGE" "error"
else
# No errors found
#########################################
# Create status API for Failed language #
#########################################
CallStatusAPI "$LANGUAGE" "success"
###############################################
# Create Validate language var from Var input #
###############################################
VALIDATE_LANGUAGE="VALIDATE_${LANGUAGE}"
######################################
# Check if we validated the langauge #
######################################
if [ "${!VALIDATE_LANGUAGE}" == "true" ]; then
CallStatusAPI "$LANGUAGE" "success"
fi
fi
done