From 44987457c1957cba7d8327d8afef4d0637dae426 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sun, 21 Jun 2026 20:28:04 +0200 Subject: [PATCH] chore: add make sync-schedules target for Temporal schedule reconcile Wraps python -m activity_core.sync_schedules for operator discoverability. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c74b16..1644b83 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,16 @@ -include .env export -.PHONY: sync-event-types sync-activity-definitions test migrate sync-all \ +.PHONY: sync-event-types sync-activity-definitions sync-schedules test migrate sync-all \ dev-up dev-down railiance-up railiance-down \ start-worker start-api start-event-router help sync-activity-definitions: ## Sync ActivityDefinition files into DB uv run python -m activity_core.sync_activity_definitions +sync-schedules: ## Reconcile Temporal schedules from activity_definitions DB + uv run python -m activity_core.sync_schedules + sync-event-types: ## Sync event type YAML files into DB uv run python scripts/sync_event_types.py