This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dist-tool.git


The following commit(s) were added to refs/heads/master by this push:
     new 664c158  add link to GH master
664c158 is described below

commit 664c1586c3130f05b58398693cb096c7577bfa36
Author: HervĂ© Boutemy <[email protected]>
AuthorDate: Tue Nov 11 10:51:28 2025 +0100

    add link to GH master
---
 .../apache/maven/dist/tools/jobs/master/ListMasterJobsReport.java   | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git 
a/src/main/java/org/apache/maven/dist/tools/jobs/master/ListMasterJobsReport.java
 
b/src/main/java/org/apache/maven/dist/tools/jobs/master/ListMasterJobsReport.java
index d9ef16c..c138d20 100644
--- 
a/src/main/java/org/apache/maven/dist/tools/jobs/master/ListMasterJobsReport.java
+++ 
b/src/main/java/org/apache/maven/dist/tools/jobs/master/ListMasterJobsReport.java
@@ -41,6 +41,7 @@ import org.jsoup.nodes.Element;
 /**
  * Generate report with build status of the Jenkins job for the master branch 
of every Git repository in
  * <a href="https://ci-maven.apache.org/job/Maven/job/maven-box/";>{@code 
maven-box} Apache Hosted Git Folder job</a>.
+ * TODO also add maintenance branches (4 vs 3)
  *
  * @author Robert Scholte
  */
@@ -167,6 +168,11 @@ public class ListMasterJobsReport extends 
AbstractJobsReport {
         sink.link(r.getBuildUrl());
         sink.rawText(r.getRepositoryName());
         sink.link_();
+        sink.text(" (see also ");
+        sink.link("https://github.com/apache/"; + r.getRepositoryName());
+        sink.rawText("GH master");
+        sink.link_();
+        sink.text(")");
         sink.listItem_();
     }
 

Reply via email to