From babf2fb177380db7366145c19ecacc51ba870024 Mon Sep 17 00:00:00 2001 From: "ana.alves" Date: Wed, 21 Jan 2026 08:30:28 -0300 Subject: [PATCH 1/2] feat: adiciona novos logs pra facilitar leitura de violacoes existentes --- entrypoint.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 2efe540..6c4779d 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -20,9 +20,9 @@ trap 'cleanup_temp_files' EXIT run_codenarc() { report="${INPUT_REPORT:-compact:stdout}" includes_arg="" - + [ -n "$INPUT_SOURCE_FILES" ] && includes_arg="-includes=${INPUT_SOURCE_FILES}" - + echo "🔍 Executando CodeNarc..." java -jar /lib/codenarc-all.jar \ -report="$report" \ @@ -30,6 +30,12 @@ run_codenarc() { -basedir="." \ $includes_arg \ > "$CODENARC_RESULT" + + echo "" + echo "📋 Saída do CodeNarc:" + echo "" + cat "$CODENARC_RESULT" + echo "" } run_reviewdog_with_config() { From 98b5f1f04f960bd2adf7c882be93ad6026645718 Mon Sep 17 00:00:00 2001 From: "ana.alves" Date: Wed, 21 Jan 2026 09:16:56 -0300 Subject: [PATCH 2/2] feat: adiciona novos logs pra facilitar leitura de violacoes existentes --- entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 6c4779d..5d353fd 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -31,11 +31,14 @@ run_codenarc() { $includes_arg \ > "$CODENARC_RESULT" + echo "" echo "" echo "📋 Saída do CodeNarc:" echo "" + echo "" cat "$CODENARC_RESULT" echo "" + echo "" } run_reviewdog_with_config() {