From c9e9d8cb671b33292c4dc0fe59ab0588cf5fe13d Mon Sep 17 00:00:00 2001 From: Martin Fillafer Date: Mon, 27 Mar 2023 10:48:19 +0200 Subject: [PATCH] fix: directory mapping is not required --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index add68ac..d898d99 100644 --- a/dist/index.js +++ b/dist/index.js @@ -297,7 +297,7 @@ class TestReporter { this.workDirInput = core.getInput('working-directory', { required: false }); this.onlySummary = core.getInput('only-summary', { required: false }) === 'true'; this.token = core.getInput('token', { required: true }); - this.directoryMapping = core.getInput('directory-mapping', { required: true }); + this.directoryMapping = core.getInput('directory-mapping', { required: false }); this.context = (0, github_utils_1.getCheckRunContext)(); this.octokit = github.getOctokit(this.token); if (this.listSuites !== 'all' && this.listSuites !== 'failed') {