Skip to content

Commit 774790c

Browse files
committed
✔ 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.
1 parent addb572 commit 774790c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test
1+
name: 'Test'
22

33
on:
44

.github/workflows/test_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Test Report'
1+
name: 'Test - Report results'
22
on:
33
workflow_run:
44
workflows: ['test']
@@ -15,6 +15,6 @@ jobs:
1515
- uses: dorny/test-reporter@v1
1616
with:
1717
artifact: /test-results-(.*)/
18-
name: 'Tests Results - $1'
18+
name: 'test - Results ($1)'
1919
path: '*junit.xml'
2020
reporter: java-junit

0 commit comments

Comments
 (0)