We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cb946e commit ec153a7Copy full SHA for ec153a7
1 file changed
ci/scripts/github/github_tvmbot.py
@@ -740,10 +740,12 @@ def run(pr: PR):
740
741
# Find the code to run for the command from the user
742
user_command = body.lstrip("@tvm-bot").strip()
743
+ logging.info(f"user_command='{user_command}'")
744
command_to_run = None
745
for command in [Merge, Rerun]:
746
if user_command in command.triggers:
747
command_to_run = command
748
+ logging.info(f"Found command to run: {command.__name__}")
749
break
750
751
if command_to_run is None:
0 commit comments