From 32b80624d18e2a85d031626943a718cbadb95c49 Mon Sep 17 00:00:00 2001 From: Connor Vidlock Date: Mon, 29 Jan 2024 15:49:51 -0600 Subject: [PATCH] last update to get non-skipped to run --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 635b8ff..45546cf 100644 --- a/src/main.ts +++ b/src/main.ts @@ -53,7 +53,7 @@ class TestReporter { constructor() { this.octokit = github.getOctokit(this.token) - if (this.listSuites !== 'all' && this.listSuites !== 'failed') { + if (this.listSuites !== 'all' && this.listSuites !== 'failed' && this.listSuites !== 'non-skipped') { core.setFailed(`Input parameter 'list-suites' has invalid value`) return }