Skip to content

Commit 12b1658

Browse files
committed
Change CI step names for reports
1 parent 40db1a0 commit 12b1658

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/test-report.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,26 @@ name: ci-report
66

77
on:
88
workflow_run:
9-
workflows: ci-test # runs after CI workflow
9+
workflows: ['ci-test'] # runs after CI workflow
1010
types:
1111
- completed
1212
jobs:
1313
test-report-release:
1414
runs-on: windows-latest
15-
name: Test report (release)
1615
steps:
1716
- uses: dorny/test-reporter@v1
1817
with:
1918
artifact: test-results-release # artifact name
20-
name: Dorny release tests # Name of the check run which will be created
19+
name: Report release tests # Name of the check run which will be created
2120
path: '*.trx' # Path to test results (inside artifact .zip)
2221
reporter: dotnet-trx # Format of test results
2322

2423
test-report-debug:
2524
runs-on: windows-latest
26-
name: Test report (debug)
2725
steps:
2826
- uses: dorny/test-reporter@v1
2927
with:
3028
artifact: test-results-debug # artifact name
31-
name: Dorny debug tests # Name of the check run which will be created
29+
name: Report debug tests # Name of the check run which will be created
3230
path: '*.trx' # Path to test results (inside artifact .zip)
3331
reporter: dotnet-trx # Format of test results

0 commit comments

Comments
 (0)