Add automation status surface
This commit is contained in:
parent
3f85274916
commit
ffe10f098e
20 changed files with 1732 additions and 11 deletions
12
Makefile
12
Makefile
|
|
@ -2,6 +2,7 @@
|
|||
export
|
||||
|
||||
.PHONY: sync-event-types sync-activity-definitions sync-schedules test migrate sync-all \
|
||||
automation-status automation-status-json \
|
||||
dev-up dev-down railiance-up railiance-down \
|
||||
start-worker start-api start-event-router help
|
||||
|
||||
|
|
@ -24,6 +25,17 @@ migrate: ## Apply all pending Alembic migrations
|
|||
|
||||
sync-all: sync-event-types sync-activity-definitions ## Sync event types and activity definitions
|
||||
|
||||
# -- Automation status ---------------------------------------------------------
|
||||
|
||||
SINCE ?= today
|
||||
FORMAT ?= human
|
||||
|
||||
automation-status: ## Report recent automation status from repo-owned evidence
|
||||
uv run python scripts/automation_status.py --since "$(SINCE)" $(if $(UNTIL),--until "$(UNTIL)",) --format "$(FORMAT)"
|
||||
|
||||
automation-status-json: ## Report recent automation status as JSON
|
||||
$(MAKE) automation-status FORMAT=json
|
||||
|
||||
# ── Infrastructure ─────────────────────────────────────────────────────────────
|
||||
|
||||
dev-up: ## Start full dev stack (Temporal + PG + ES + NATS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue