Skip to content

Commit ec153a7

Browse files
committed
debug
1 parent 8cb946e commit ec153a7

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ci/scripts/github/github_tvmbot.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,10 +740,12 @@ def run(pr: PR):
740740

741741
# Find the code to run for the command from the user
742742
user_command = body.lstrip("@tvm-bot").strip()
743+
logging.info(f"user_command='{user_command}'")
743744
command_to_run = None
744745
for command in [Merge, Rerun]:
745746
if user_command in command.triggers:
746747
command_to_run = command
748+
logging.info(f"Found command to run: {command.__name__}")
747749
break
748750

749751
if command_to_run is None:

0 commit comments

Comments
 (0)