File 0347-gh-Fix-link-to-new-test-results.patch of Package erlang
From 067b3c6702518d708aac8d06dae43314ae8f26f3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lukas=20Backstr=C3=B6m?= <lukas@erlang.org>
Date: Mon, 17 Feb 2025 15:22:51 +0100
Subject: [PATCH] gh: Fix link to new test results
---
.github/scripts/pr-comment.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/scripts/pr-comment.js b/.github/scripts/pr-comment.js
index 9bc0dc8d8f..09c540a7c9 100644
--- a/.github/scripts/pr-comment.js
+++ b/.github/scripts/pr-comment.js
@@ -102,8 +102,8 @@ To speed up review, make sure that you have read [Contributing to Erlang/OTP](${
See the [TESTING](${repoURL}/blob/master/HOWTO/TESTING.md) and [DEVELOPMENT](${repoURL}/blob/master/HOWTO/DEVELOPMENT.md) HowTo guides for details about how to run test locally.
## Artifacts
-* ` + (ct_logs ? `[Complete CT logs](https://erlang.org/github-pr/prs/${pr_number}/ct_logs/index.html) ([Download Logs](${nightlyURL(ct_logs)}))` : "No CT logs found") + `
-* ` + (html_docs ? `[HTML Documentation](https://erlang.org/github-pr/prs/${pr_number}/doc/index.html) ([Download HTML Docs](${nightlyURL(html_docs)}))` : "No HTML docs found") + `
+* ` + (ct_logs ? `[Complete CT logs](https://erlang.org/github-pr/${pr_number}/ct_logs/index.html) ([Download Logs](${nightlyURL(ct_logs)}))` : "No CT logs found") + `
+* ` + (html_docs ? `[HTML Documentation](https://erlang.org/github-pr/${pr_number}/doc/index.html) ([Download HTML Docs](${nightlyURL(html_docs)}))` : "No HTML docs found") + `
* ` + (win_exe ? `[Windows Installer](${nightlyURL(win_exe)})` : "No Windows Installer found") + `
// Erlang/OTP Github Action Bot
--
2.43.0