feat(stack): show update schedule in stack list#1939
Merged
Conversation
Add an "Update schedule" column to `mw stack list` that displays the configured container stack update schedule (cron expression, with the timezone in parentheses when set). Stacks without a schedule show "no schedule". Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
mittwald-machine
added a commit
that referenced
this pull request
Jun 25, 2026
# [1.18.0](v1.17.2...v1.18.0) (2026-06-25) ### Bug Fixes * **release:** formatting in release.config.cjs ([7aad175](7aad175)) ### Features * **stack:** add stack set-update-schedule and stack unset-update-schedule commands ([#1938](#1938)) ([d58f217](d58f217)) * **stack:** show update schedule in stack list ([#1939](#1939)) ([a5d990d](a5d990d))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
mw stack listnow shows the configured update schedule of each container stack in a new Update schedule column.The column reads the
updateSchedulefield from theContainerStackResponse:no schedulewhen none is configured.0 3 * * *) when no timezone is set.cron (timezone)(e.g.0 3 * * * (Europe/Berlin)) when a timezone is present.The column flows through the existing table formatter, so it also appears in the JSON/CSV output modes.
🤖 Generated with Claude Code