This is an automated email from the ASF dual-hosted git repository.

apolovtsev pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new 8d8c80f5b6e IGNITE-28289 Fix mention ticket job (#7811)
8d8c80f5b6e is described below

commit 8d8c80f5b6e76ea6cc523ae1602836d14e286f1b
Author: Lozmanov <[email protected]>
AuthorDate: Wed Mar 18 14:45:29 2026 +0500

    IGNITE-28289 Fix mention ticket job (#7811)
---
 .teamcity/files/scripts/bash/CheckCodeBase.sh | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/.teamcity/files/scripts/bash/CheckCodeBase.sh 
b/.teamcity/files/scripts/bash/CheckCodeBase.sh
index 6d240b075ee..14a72acaa45 100644
--- a/.teamcity/files/scripts/bash/CheckCodeBase.sh
+++ b/.teamcity/files/scripts/bash/CheckCodeBase.sh
@@ -11,10 +11,12 @@ echo $SOURCE
 EXCLUDE="%ISSUES_EXCLUDE_LIST%"
 EXCLUDE_LIST=( $EXCLUDE )
 
-MATCHES=$(grep -iIER --exclude-dir={.git,.idea} '.' -e ".*${SOURCE}.*" | \
-    grep -v '@see' | \
-    grep -v '<MUTED>' | \
-    grep -v -f <(printf "%s\n" "${EXCLUDE_LIST[@]:-__no_excludes__}"))
+MATCHES=$(grep -iIER --exclude-dir={.git,.idea} '.' -e ".*${SOURCE}.*" || true)
+if [ -n "$MATCHES" ]; then
+    MATCHES=$(echo "$MATCHES" | grep -v '@see'    || true)
+    MATCHES=$(echo "$MATCHES" | grep -v '<MUTED>' || true)
+    MATCHES=$(echo "$MATCHES" | grep -v -f <(printf "%s\n" 
"${EXCLUDE_LIST[@]:-__no_excludes__}") || true)
+fi
 
 if [ -n "$MATCHES" ]; then
     echo

Reply via email to