profile: remove extend profile composition
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
return yoi.profile.extend("builtin:default", {
|
||||
slug = "companion",
|
||||
description = "Companion role profile with bundled reusable policy",
|
||||
local p = yoi.profile.import("builtin:default")
|
||||
|
||||
scope = yoi.scope.workspace_write({
|
||||
deny_write = { ".worktree" },
|
||||
}),
|
||||
|
||||
feature = {
|
||||
task = { enabled = true },
|
||||
memory = { enabled = true },
|
||||
web = { enabled = true },
|
||||
pods = { enabled = true },
|
||||
ticket = { enabled = true, access = "lifecycle" },
|
||||
ticket_orchestration = { enabled = false },
|
||||
},
|
||||
p.slug = "companion"
|
||||
p.description = "Companion role profile with bundled reusable policy"
|
||||
p.scope = yoi.scope.workspace_write({
|
||||
deny_write = { ".worktree" },
|
||||
})
|
||||
p.feature = {
|
||||
task = { enabled = true },
|
||||
memory = { enabled = true },
|
||||
web = { enabled = true },
|
||||
pods = { enabled = true },
|
||||
ticket = { enabled = true, access = "lifecycle" },
|
||||
ticket_orchestration = { enabled = false },
|
||||
}
|
||||
|
||||
return p
|
||||
|
||||
Reference in New Issue
Block a user