From 24ade537c8b4ebfec400840007de26cfb77fd8aa Mon Sep 17 00:00:00 2001 From: Jozef Izso Date: Mon, 16 Mar 2026 14:36:47 +0100 Subject: [PATCH 1/2] Add the missing `collapsed` input parameter documentation to README --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index f92e3a2..a5a2ec9 100644 --- a/README.md +++ b/README.md @@ -194,6 +194,13 @@ jobs: # Set this action as failed if no test results were found fail-on-empty: 'true' + # Controls whether test report details are collapsed or expanded. + # Supported options: + # auto: Collapse only if all tests pass (default behavior) + # always: Always collapse the report details + # never: Always expand the report details + collapsed: 'auto' + # Relative path under $GITHUB_WORKSPACE where the repository was checked out. working-directory: '' From df6247429542221bc30d46a036ee47af1102c451 Mon Sep 17 00:00:00 2001 From: Jozef Izso Date: Mon, 16 Mar 2026 14:35:54 +0100 Subject: [PATCH 2/2] test-reporter release v2.7.0 --- CHANGELOG.md | 5 +++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57cf2b4..f9216a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 2.7.0 +* Feature: Add `slug-prefix` output for link anchors https://github.com/dorny/test-reporter/pull/731 +* Feature: Report `jest-junit` testsuite errors as failures https://github.com/dorny/test-reporter/pull/155 +* Security: Update dependencies to fix reported security vulnerabilities + ## 2.6.0 * Fix: For `workflow_run` events, resolve the commit of the check run from related pull request head commits first (matching `workflow_run.head_branch`, then first PR), and fall back to `workflow_run.head_sha` for non-PR runs https://github.com/dorny/test-reporter/pull/673 * Change: The `test-reporter` action will listed all artifacts associated with the build run https://github.com/dorny/test-reporter/pull/693 diff --git a/package-lock.json b/package-lock.json index bdca712..5915bb7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "test-reporter", - "version": "2.5.0", + "version": "2.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "test-reporter", - "version": "2.5.0", + "version": "2.7.0", "license": "MIT", "dependencies": { "@actions/core": "^3.0.0", diff --git a/package.json b/package.json index 067c0c3..457d114 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "test-reporter", - "version": "2.5.0", + "version": "2.7.0", "private": true, "description": "Presents test results from popular testing frameworks as Github check run", "type": "module",