mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
Fix the build URL send to the intermittent dashboard
This URL contained a spurious ")".
This commit is contained in:
parent
524539fb17
commit
e725c3b241
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue