Skip to content

Commit

Permalink
Fix the build URL send to the intermittent dashboard
Browse files Browse the repository at this point in the history
This URL contained a spurious ")".
  • Loading branch information
mrobinson committed Feb 27, 2023
1 parent 524539f commit e725c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/wpt/servowpt.py
Expand Up @@ -243,7 +243,7 @@ def get_github_context_information() -> GithubContextInformation:
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)
Expand Down

0 comments on commit e725c3b

Please sign in to comment.