File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -338813,12 +338813,14 @@ function run() {
338813338813 for (const target of targets) {
338814338814 const tagConditions = core.getMultilineInput(`${target}Tag`, { trimWhitespace: true });
338815338815 const maxJobs = parseInt(core.getInput(`${target}MaxJobs`), 10) || 1;
338816+ const config = core.getInput(`${target}Config`);
338816338817 const parallel = core.getInput(`${target}Parallel`);
338817338818 const preTargets = core.getMultilineInput(`${target}PreTargets`) || [];
338818338819 const postTargets = core.getMultilineInput(`${target}PostTargets`) || [];
338819338820 core.startGroup(`Target "${target}"`);
338820338821 core.info(`- ${target}Tag: ${(0, has_one_of_required_tags_1.cleanLogConditions)(tagConditions)}`);
338821338822 core.info(`- ${target}MaxJobs: ${maxJobs}`);
338823+ core.info(`- ${target}Config: ${config}`);
338822338824 core.info(`- ${target}Parallel: ${parallel}`);
338823338825 core.info(`- ${target}PreTargets: ${preTargets.join(' AND ')}`);
338824338826 core.info(`- ${target}PostTargets: ${postTargets.join(' AND ')}`);
@@ -338855,7 +338857,8 @@ function run() {
338855338857 postTargets: postTargets.join('\n'),
338856338858 index: i + 1,
338857338859 count: maxJobCount,
338858- parallel
338860+ parallel,
338861+ config
338859338862 });
338860338863 }
338861338864 core.endGroup();
You can’t perform that action at this time.
0 commit comments