diff --git a/.github/workflows/.reusable-docker-e2e-tests.yml b/.github/workflows/.reusable-docker-e2e-tests.yml index b6fd246285fa..c933ea211cc5 100644 --- a/.github/workflows/.reusable-docker-e2e-tests.yml +++ b/.github/workflows/.reusable-docker-e2e-tests.yml @@ -200,7 +200,14 @@ jobs: with: header: playwright-e2e-results append: true - message: ${{ steps.report-summary-success.outputs.summary || steps.report-summary-failure.outputs.summary }} + # Collapses the
blocks of previous runs, keeping only the latest expanded + hide_details: true + message: | +
${{ steps.report-summary-success.outputs.summary && '✅' || '❌' }} Playwright Test Results (${{ steps.test-type.outputs.label }} - ${{ inputs.runs-on }}) — run #${{ github.run_number }} (attempt ${{ github.run_attempt }}) + + ${{ steps.report-summary-success.outputs.summary || steps.report-summary-failure.outputs.summary }} + +
# Visual regression: after all E2E retries, run comparison and upload results - name: Upload visual regression baselines (main branch)