disable autofix for merge queue

This commit is contained in:
Max Kainov 2024-04-08 14:15:49 +00:00
parent 5e1c1b6b94
commit f3dc77ee00

View File

@ -131,6 +131,11 @@ def main():
temp_path.mkdir(parents=True, exist_ok=True)
pr_info = PRInfo()
if pr_info.is_merge_queue() and args.push:
print("Auto style fix will be disabled for Merge Queue workflow")
args.push = False
run_cpp_check = True
run_shell_check = True
run_python_check = True