From 4d687330c3b96a6261a3426878c584059bb7ff5d Mon Sep 17 00:00:00 2001 From: James Mills <1290234+prologic@users.noreply.github.com> Date: Sat, 25 Jan 2020 15:42:52 +1000 Subject: [PATCH] Added --no-stdout --no-color args to remark call --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 4cd2502..7d3cb69 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -10,5 +10,6 @@ if [ "${INPUT_REPORTER}" = 'github-pr-review' ]; then exit 1 else # github-pr-check,github-check (GitHub Check API) doesn't support markdown annotation. - remark . | reviewdog -f="checkstyle" -name="remark-lint" -reporter="${INPUT_REPORTER:-github-pr-check}" -level="${INPUT_LEVEL}" + remark . --no-stdout --no-color | + reviewdog -f="checkstyle" -name="remark-lint" -reporter="${INPUT_REPORTER:-github-pr-check}" -level="${INPUT_LEVEL}" fi