From bd42d29b375940993ec241e9ab296c1ef8c42c15 Mon Sep 17 00:00:00 2001 From: Asger Geel Weirsoee Date: Fri, 27 Feb 2026 12:58:43 +0100 Subject: [PATCH] Add scheduler tracker for bot-specific work queue --- coordination/scheduler_tasks.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 coordination/scheduler_tasks.json diff --git a/coordination/scheduler_tasks.json b/coordination/scheduler_tasks.json new file mode 100644 index 0000000..2a8d9ce --- /dev/null +++ b/coordination/scheduler_tasks.json @@ -0,0 +1,26 @@ +{ + "updatedAt": "2026-02-27T00:00:00Z", + "tasks": [ + { + "id": "BOT-PR-POLICY", + "title": "Dev-runner skal oprette PR ved feature-ready", + "ownerRole": "job-scheduler", + "status": "active", + "priority": "high" + }, + { + "id": "BOT-REVIEW-ONLY-PRS", + "title": "Review-runner reviewer kun åbne PRs og commenter i PR", + "ownerRole": "review-runner", + "status": "active", + "priority": "high" + }, + { + "id": "BOT-MERGE-GATE", + "title": "Integrator-runner merger kun ved grønne gates", + "ownerRole": "integrator-runner", + "status": "active", + "priority": "high" + } + ] +}