Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/actions/run-transport-interop-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ inputs:
description: "Enable verbose output"
required: false
default: false
known-errors:
description: "Regex for known test failures. Matched failures show as yellow instead of red and won't fail the workflow. Merged with knownErrors.json if present."
required: false
default: ""
runs:
using: "composite"
steps:
Expand Down Expand Up @@ -103,7 +107,12 @@ runs:
- name: Render results
if: inputs.render == 'true'
working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }}
run: npm run renderResults > ./dashboard.md
run: |
if [ -n "${{ inputs.known-errors }}" ]; then
npm run renderResults -- --known-errors "${{ inputs.known-errors }}" > ./dashboard.md
else
npm run renderResults > ./dashboard.md
fi
shell: bash

- name: Show Dashboard Output
Expand Down
Loading