From 9fe91a73f80b09a088a95569dd9ce4236774ac21 Mon Sep 17 00:00:00 2001 From: Patrick Gartung Date: Tue, 10 Dec 2024 16:14:59 -0600 Subject: [PATCH] Fix workflow number used to find vtune result --- report-summary-merged-prs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/report-summary-merged-prs.py b/report-summary-merged-prs.py index 9c284174c49..a3aa5d6e88d 100755 --- a/report-summary-merged-prs.py +++ b/report-summary-merged-prs.py @@ -1081,7 +1081,7 @@ def find_one_vtune_result(magic_command): """ Looks for one vtune result """ - command_to_execute = magic_command.replace("WORKFLOW", "12634.21") + command_to_execute = magic_command.replace("WORKFLOW", "13034.21") print("Running ", command_to_execute) out, err, ret_code = get_output_command(command_to_execute) print("Ran:", out, err, ret_code, command_to_execute)