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

mshr pushed a commit to branch investigate-tvmbot-error
in repository https://gitbox.apache.org/repos/asf/tvm.git

commit ec153a71fd1ee2931ea68bce53b62fe7891983ca
Author: Masahiro Hiramori <[email protected]>
AuthorDate: Thu Feb 26 13:04:14 2026 +0900

    debug
---
 ci/scripts/github/github_tvmbot.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ci/scripts/github/github_tvmbot.py 
b/ci/scripts/github/github_tvmbot.py
index 0d8981b1ba..ed6d2573ab 100755
--- a/ci/scripts/github/github_tvmbot.py
+++ b/ci/scripts/github/github_tvmbot.py
@@ -740,10 +740,12 @@ if __name__ == "__main__":
 
     # Find the code to run for the command from the user
     user_command = body.lstrip("@tvm-bot").strip()
+    logging.info(f"user_command='{user_command}'")
     command_to_run = None
     for command in [Merge, Rerun]:
         if user_command in command.triggers:
             command_to_run = command
+            logging.info(f"Found command to run: {command.__name__}")
             break
 
     if command_to_run is None:

Reply via email to