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:
parent
addb572922
commit
774790c36f
2 changed files with 3 additions and 3 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Test
|
||||
name: 'Test'
|
||||
|
||||
on:
|
||||
|
||||
|
|
4
.github/workflows/test_report.yml
vendored
4
.github/workflows/test_report.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue