From 774790c36f7e1477d383bfb0f1771dc523953524 Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Fri, 25 Apr 2025 11:20:00 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=94=20=20GitHub=20Actions:=20Make=20repor?= =?UTF-8?q?ting=20results=20clearer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In the "Actions" tab on GitHub, the workflow run that would post test results to the _original_ workflow run is named "Test Report". This would lead me to click on it to see the results, just to be disappointed. This aims to make the naming of the GitHub workflows/jobs clearer. --- .github/workflows/test.yml | 2 +- .github/workflows/test_report.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 387f7a2..db089d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Test +name: 'Test' on: diff --git a/.github/workflows/test_report.yml b/.github/workflows/test_report.yml index 26f411b..5579d8c 100644 --- a/.github/workflows/test_report.yml +++ b/.github/workflows/test_report.yml @@ -1,4 +1,4 @@ -name: 'Test Report' +name: 'Test - Report results' on: workflow_run: workflows: ['test'] @@ -15,6 +15,6 @@ jobs: - uses: dorny/test-reporter@v1 with: artifact: /test-results-(.*)/ - name: 'Tests Results - $1' + name: 'test - Results ($1)' path: '*junit.xml' reporter: java-junit