We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae98d2e commit fc62b08Copy full SHA for fc62b08
index.js
@@ -390,10 +390,10 @@ async function run() {
390
const clusterName = cluster ? cluster : 'default';
391
const shouldRunTaskInput = core.getInput('run-task', { required: false }) || 'false';
392
const shouldRunTask = shouldRunTaskInput.toLowerCase() === 'true';
393
+ core.debug(`shouldRunTask: ${shouldRunTask}`);
394
if (shouldRunTask) {
395
+ core.debug("Running ad-hoc task...");
396
await runTask(ecs, clusterName, taskDefArn, waitForMinutes);
- } else {
- core.debug('run-task is not true, skipping.')
397
}
398
399
// Update the service with the new task definition
0 commit comments