Skip to content

Commit

Permalink
Auto merge of #29429 - servo:fix-build-url-for-intermittent-dashboard…
Browse files Browse the repository at this point in the history
…, r=delan

Fix the build URL send to the intermittent dashboard

This URL contained a spurious ")".

<!-- Please describe your changes on the following line: -->

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because they simply change the CI scripts.

<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
  • Loading branch information
bors-servo committed Feb 27, 2023
2 parents 524539f + e725c3b commit 6fe87c9
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 6fe87c9

Please sign in to comment.