feat: implement WorkspaceManager to handle local Gitea repository cloning and configuration and document identified codebase vulnerabilities

This commit is contained in:
meeks
2026-07-16 11:41:15 +02:00
parent 5f35f56edc
commit dfae518f0c
+1 -1
View File
@@ -57,7 +57,7 @@ class WorkspaceManager:
user = client.get_authenticated_user()
if user:
name = user.full_name or user.login or "meeks-ai"
email = user.email or "micke_ingvarsson+ai@hotmail.com"
email = user.email or f"{user.login or 'agent'}@noreply.gitea"
subprocess.run(
["git", "-C", str(repo_path), "config", "user.name", name],
check=True, capture_output=True