From 12b16583b3118d76830852c9bd4f76da902ea9a6 Mon Sep 17 00:00:00 2001 From: Abel Braaksma Date: Thu, 24 Nov 2022 18:04:47 +0100 Subject: [PATCH] Change CI step names for reports --- .github/workflows/test-report.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-report.yaml b/.github/workflows/test-report.yaml index 82549238..7edd203d 100644 --- a/.github/workflows/test-report.yaml +++ b/.github/workflows/test-report.yaml @@ -6,28 +6,26 @@ name: ci-report on: workflow_run: - workflows: ci-test # runs after CI workflow + workflows: ['ci-test'] # runs after CI workflow types: - completed jobs: test-report-release: runs-on: windows-latest - name: Test report (release) steps: - uses: dorny/test-reporter@v1 with: artifact: test-results-release # artifact name - name: Dorny release tests # Name of the check run which will be created + name: Report release tests # Name of the check run which will be created path: '*.trx' # Path to test results (inside artifact .zip) reporter: dotnet-trx # Format of test results test-report-debug: runs-on: windows-latest - name: Test report (debug) steps: - uses: dorny/test-reporter@v1 with: artifact: test-results-debug # artifact name - name: Dorny debug tests # Name of the check run which will be created + name: Report debug tests # Name of the check run which will be created path: '*.trx' # Path to test results (inside artifact .zip) reporter: dotnet-trx # Format of test results