1
0
Fork 0
mirror of https://github.com/qurator-spk/dinglehopper.git synced 2025-06-09 20:00:01 +02:00

✔ GitHub Actions: Make reporting results clearer

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.
This commit is contained in:
Mike Gerber 2025-04-25 11:20:00 +02:00
parent addb572922
commit 774790c36f
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
name: Test
name: 'Test'
on:

View file

@ -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