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

lewismc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nutch.git


The following commit(s) were added to refs/heads/master by this push:
     new 317d2de28 NUTCH-3126 Report JUnit test results in GitHub pull request 
thread (#867)
317d2de28 is described below

commit 317d2de28f33744fdef6a44a788cff7c7d045258
Author: Lewis John McGibbney <[email protected]>
AuthorDate: Tue Oct 14 19:21:51 2025 -0700

    NUTCH-3126 Report JUnit test results in GitHub pull request thread (#867)
---
 .github/workflows/junit-report.yml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/junit-report.yml 
b/.github/workflows/junit-report.yml
index 46373d399..ead3e5b32 100644
--- a/.github/workflows/junit-report.yml
+++ b/.github/workflows/junit-report.yml
@@ -35,8 +35,8 @@ jobs:
         uses: mikepenz/action-junit-report@v5
         with:
           report_paths: |-
-            ./build/test/TEST-*.xml
-            ./build/**/test/TEST-*.xml
+            ./test/TEST-*.xml
+            ./**/test/TEST-*.xml
           commit: ${{ github.event.workflow_run.head_sha }}
           comment: true
           pr_id: ${{ github.event.workflow_run.pull_requests[0].number }}
@@ -49,4 +49,6 @@ jobs:
           include_time_in_summary: true
           include_passed: true
           job_name: tests
-          check_name: 'JUnit Test Report Core, JUnit Test Report Plugins'
+          check_name: |-
+            JUnit Test Report Core
+            JUnit Test Report Plugins

Reply via email to