Add chownFilesTo (#187)

* add chownFilesTo

* added missing newline

* added more chownFilesTo
This commit is contained in:
Skjalg S. Mæhre
2022-06-24 06:59:01 -04:00
committed by GitHub
parent e8774f3837
commit 3d5d2f5834
7 changed files with 37 additions and 4 deletions

View File

@@ -26,6 +26,7 @@ const Input = {
const gitPrivateToken = getInput('gitPrivateToken') || '';
const githubToken = getInput('githubToken') || '';
const checkName = getInput('checkName') || 'Test Results';
const chownFilesTo = getInput('chownFilesTo') || '';
// Validate input
if (!this.testModes.includes(testMode)) {
@@ -65,6 +66,7 @@ const Input = {
gitPrivateToken,
githubToken,
checkName,
chownFilesTo,
};
},
};