Skip to content

Commit 10e08b0

Browse files
committed
chore(actions-plan): Add dist
1 parent 14fc65f commit 10e08b0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

actions/plan/dist/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)