Merge branch 'master' into directory-and-debug

This commit is contained in:
Thomas Hu
2020-07-13 13:00:02 -04:00
12 changed files with 4974 additions and 8 deletions

View File

@@ -9,6 +9,7 @@ try {
const token = core.getInput("token");
const flags = core.getInput("flags");
const file = core.getInput("file");
const files = core.getInput("files");
const env_vars = core.getInput("env_vars");
const dir = core.getInput("directory");
const write_path = core.getInput("path_to_write_report");
@@ -85,6 +86,14 @@ try {
);
}
if (files) {
files.split(',').forEach(f => {
execArgs.push(
"-f", `${f}`
);
});
}
if (dir) {
execArgs.push(
"-s", `${dir}`