✔ 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.
pull/144/head
Mike Gerber 5 days ago
parent addb572922
commit 774790c36f

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

@ -1,4 +1,4 @@
name: 'Test Report' name: 'Test - Report results'
on: on:
workflow_run: workflow_run:
workflows: ['test'] workflows: ['test']
@ -15,6 +15,6 @@ jobs:
- uses: dorny/test-reporter@v1 - uses: dorny/test-reporter@v1
with: with:
artifact: /test-results-(.*)/ artifact: /test-results-(.*)/
name: 'Tests Results - $1' name: 'test - Results ($1)'
path: '*junit.xml' path: '*junit.xml'
reporter: java-junit reporter: java-junit

Loading…
Cancel
Save