From 6ca99d206b9c09163c9da9491b26d0779dae3616 Mon Sep 17 00:00:00 2001 From: tracer Date: Sun, 10 May 2026 12:11:35 +0200 Subject: [PATCH] Send mail for skipped runner builds --- wrapper.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/wrapper.sh b/wrapper.sh index d2c0375..a275c3f 100755 --- a/wrapper.sh +++ b/wrapper.sh @@ -16,12 +16,6 @@ if [[ "$notify" == "error" && $EXIT_CODE -ne 0 ]]; then exit $EXIT_CODE fi -if echo "$OUTPUT" | grep -q '^SKIP:'; then - if [[ "$notify" == "error" || "$notify" == "success" ]]; then - exit 0 - fi -fi - if [[ "$notify" == "success" && $EXIT_CODE -eq 0 ]]; then SUBJECT="[Gitea Runner Build] Success" echo "$OUTPUT" | mail -s "$SUBJECT" "$email"