diff --git a/entrypoint.sh b/entrypoint.sh index 7be15fb..cc8e368 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,6 +2,7 @@ export REVIEWDOG_GITHUB_API_TOKEN="${INPUT_GITHUB_TOKEN}" +# shellcheck disable=SC2086 actionlint -oneline ${INPUT_ACTIONLINT_FLAGS} \ | reviewdog \ -efm="%f:%l:%c: %m" \ @@ -11,3 +12,6 @@ actionlint -oneline ${INPUT_ACTIONLINT_FLAGS} \ -fail-on-error="${INPUT_FAIL_ON_ERROR}" \ -level="${INPUT_LEVEL}" \ ${INPUT_REVIEWDOG_FLAGS} +exit_code=$? + +exit $exit_code