Skip to main content

Workflow Summary

Actions Insights writes a TeamCity-style markdown table to the GitHub Actions job summary. This appears on the workflow run page and is ideal for desktop review.

Workflow summary with failed tests table

When to Enable

Enable the workflow summary for every workflow where you want a quick overview on the run page — especially on main branch builds where PR comments are not available.

Configuration

The workflow summary is enabled by default (generate-job-summary: true).

- uses: mzbrau/actions-insights@v1
with:
test-results: '**/*.trx'
generate-job-summary: true
max-failed-tests-in-summary: 20
include-slowest-tests: 18

To disable:

with:
generate-job-summary: false

What It Includes

  • Failed tests table with stack traces
  • Slowest tests
  • Skipped tests
  • Links to the workflow run and artifacts

Key Inputs

InputDefaultDescription
generate-job-summarytrueWrite job summary
max-failed-tests-in-summary20Cap failures in the table
include-slowest-tests18Slow test count

No additional permissions beyond contents: read are required for the summary itself.

Learn More