From e725c3b241c84d05e8ae7bf27bcf7b4fd1c81861 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Mon, 27 Feb 2023 12:05:54 +0100 Subject: [PATCH] Fix the build URL send to the intermittent dashboard This URL contained a spurious ")". --- tests/wpt/servowpt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wpt/servowpt.py b/tests/wpt/servowpt.py index b74029ac346..ffd458385be 100644 --- a/tests/wpt/servowpt.py +++ b/tests/wpt/servowpt.py @@ -243,7 +243,7 @@ class TrackerDashboardFilter(): repo_url = f"https://github.com/{repository}" run_id = github_context['run_id'] - build_url = f"{repo_url}/actions/runs/{run_id})" + build_url = f"{repo_url}/actions/runs/{run_id}" commit_title = github_context["event"]["head_commit"]["message"] match = re.match(r"^Auto merge of #(\d+)", commit_title)