Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions entrypoint.sh
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [shellcheck] reported by reviewdog 🐶
Double quote to prevent globbing and word splitting. SC2086

$includes_arg \

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [shellcheck] reported by reviewdog 🐶
Double quote to prevent globbing and word splitting. SC2086

${INPUT_REVIEWDOG_FLAGS} || true

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[shellcheck (suggestion)] reported by reviewdog 🐶

$includes_arg \

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[shellcheck (suggestion)] reported by reviewdog 🐶

${INPUT_REVIEWDOG_FLAGS} || true

Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ check_blocking_rules() {
done

if [ "$(cat "$VIOLATIONS_FLAG")" -eq 1 ]; then
echo "⛔ P1s existem E há violações em linhas alteradas → DEVERIA bloquear merge"
echo "🔧 Exit desabilitado temporariamente para monitoramento"
# exit 1
echo "⛔ P1s existem E há violações em linhas alteradas"
echo "💡 Corrija as violacoes ou use o bypass autorizado pelo coordenador."
exit 1
else
echo "✅ P1s existem mas fora das linhas alteradas → merge permitido"
fi
Expand Down
Loading