diff --git a/lib/linter.sh b/lib/linter.sh index 363e73f8..0edac74a 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -994,6 +994,12 @@ CallStatusAPI() { # Check to see if were enabled for multi Status mesaages # ########################################################## if [ "${MULTI_STATUS}" == "true" ] && [ -n "${GITHUB_TOKEN}" ] && [ -n "${GITHUB_REPOSITORY}" ]; then + + # make sure we honor DISABLE_ERRORS + if [ "${DISABLE_ERRORS}" == "true" ]; then + STATUS="success" + fi + ############################################## # Call the status API to create status check # ##############################################