feat(KB-228): add schedule time presets

- Add morning, afternoon, evening, and night preset schedules to core automation types
- Update ScheduleForm with preset selection dropdown and time handling
- Add color coding for different schedule types in ScheduleCard
- Add tests for new schedule preset functionality
- Include changeset for release tracking
This commit is contained in:
gsxdsm
2026-03-30 18:42:04 -07:00
parent cd8a1e9779
commit 7fca1f7010
5 changed files with 60 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
---
"@dustinbyrne/kb": minor
---
Add 6 new schedule preset options for more granular time intervals
- Every 15 minutes (`*/15 * * * *`)
- Every 30 minutes (`*/30 * * * *`)
- Every 2 hours (`0 */2 * * *`)
- Every 6 hours (`0 */6 * * *`)
- Every 12 hours (`0 */12 * * *`)
- Weekdays at 9 AM (`0 9 * * 1-5`)
Each preset includes its own color badge for visual distinction in the schedule card view.