From 8aa52ab345cb4894b7d948b2bd59608bf9cf5f1b Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 18 Feb 2026 11:21:00 -0600 Subject: [PATCH] Add Gitea integration task to default tasks --- src/stores/useTaskStore.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/stores/useTaskStore.ts b/src/stores/useTaskStore.ts index 514e166..51dbbf1 100644 --- a/src/stores/useTaskStore.ts +++ b/src/stores/useTaskStore.ts @@ -98,6 +98,22 @@ const defaultTasks: Task[] = [ updatedAt: new Date().toISOString(), comments: [], tags: ['ios', 'social'] + }, + { + id: '3', + title: 'Set up Gitea integration for code pushes', + description: 'Create bot account on Gitea (192.168.1.128:3000) and configure git remotes for all OpenClaw projects. Decide on account name, permissions, and auth method (SSH vs token). User prefers dedicated bot account over using their personal account for audit trail.', + type: 'task', + status: 'backlog', + priority: 'medium', + projectId: '2', + createdAt: new Date().toISOString(), + updatedAt: new Date().toISOString(), + comments: [ + { id: 'c3', text: 'User has local Gitea at http://192.168.1.128:3000', createdAt: new Date().toISOString(), author: 'assistant' }, + { id: 'c4', text: 'Options: 1) Create dedicated bot account (recommended), 2) Use existing account', createdAt: new Date().toISOString(), author: 'assistant' } + ], + tags: ['gitea', 'git', 'automation', 'infrastructure'] } ]