diff --git a/src/commands/stack/list.ts b/src/commands/stack/list.ts index bb6055d44..66c456c17 100644 --- a/src/commands/stack/list.ts +++ b/src/commands/stack/list.ts @@ -72,6 +72,17 @@ export class List extends ListBaseCommand { return stack.volumes.length + " volumes"; }, }, + updateSchedule: { + header: "Update schedule", + get(stack) { + if (!stack.updateSchedule) { + return "no schedule"; + } + + const { cron, timezone } = stack.updateSchedule; + return timezone ? `${cron} (${timezone})` : cron; + }, + }, }; } }