commit: 692552633b433b6b77decb464679ec0c2137ef51 Author: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz> AuthorDate: Tue Feb 10 11:51:26 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Feb 10 12:04:36 2026 +0000 URL: https://gitweb.gentoo.org/proj/repo-mirror-ci.git/commit/?id=69255263
pull-request/report-pull-request: fix report_url A stray 's' had been left in and it breaks the "details" link. Thanks to ionen for spotting. Signed-off-by: Thomas Bracht Laumann Jespersen <t <AT> laumann.xyz> Part-of: https://github.com/gentoo/repo-mirror-ci/pull/14 Closes: https://github.com/gentoo/repo-mirror-ci/pull/14 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> pull-request/report-pull-request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pull-request/report-pull-request.py b/pull-request/report-pull-request.py index 776fba5..5b0c87d 100755 --- a/pull-request/report-pull-request.py +++ b/pull-request/report-pull-request.py @@ -64,7 +64,7 @@ def report_codeberg_pr( for url in borked: body += url if pre_borked: - body += f"\nThere are existing issues already. Please look into the report to make sure none of them affect the packages in question:\n{report_url}s\n" + body += f"\nThere are existing issues already. Please look into the report to make sure none of them affect the packages in question:\n{report_url}\n" elif had_broken: body += "\nAll QA issues have been fixed!\n" else:
