From f0df84c8fb422f806350476a9b085e4aadf3ab8f Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Tue, 4 Apr 2023 19:42:20 +0200 Subject: [PATCH] only-failed is not a valid option for list-suites and list-tests (#33) --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 18ef781..e6c0d96 100644 --- a/action.yml +++ b/action.yml @@ -37,14 +37,14 @@ inputs: description: | Limits which test suites are listed. Supported options: - all - - only-failed + - failed required: true default: 'all' list-tests: description: | Limits which test cases are listed. Supported options: - all - - only-failed + - failed - none required: true default: 'all'