fix: inherit default role profile config

This commit is contained in:
2026-06-11 16:28:38 +09:00
parent 730dab65b8
commit 1810debb58
6 changed files with 20 additions and 20 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
return yoi.profile {
return yoi.profile.extend("builtin:default", {
slug = "coder",
description = "Coder role profile with bundled reusable policy",
@@ -12,4 +12,4 @@ return yoi.profile {
ticket = { enabled = false, access = "lifecycle" },
ticket_orchestration = { enabled = false },
},
}
})
+2 -2
View File
@@ -1,4 +1,4 @@
return yoi.profile {
return yoi.profile.extend("builtin:default", {
slug = "companion",
description = "Companion role profile with bundled reusable policy",
@@ -12,4 +12,4 @@ return yoi.profile {
ticket = { enabled = false, access = "lifecycle" },
ticket_orchestration = { enabled = false },
},
}
})
+2 -2
View File
@@ -1,4 +1,4 @@
return yoi.profile {
return yoi.profile.extend("builtin:default", {
slug = "intake",
description = "Intake role profile with bundled reusable policy",
@@ -12,4 +12,4 @@ return yoi.profile {
ticket = { enabled = true, access = "lifecycle" },
ticket_orchestration = { enabled = false },
},
}
})
+2 -2
View File
@@ -1,4 +1,4 @@
return yoi.profile {
return yoi.profile.extend("builtin:default", {
slug = "orchestrator",
description = "Orchestrator role profile with bundled reusable policy",
@@ -14,4 +14,4 @@ return yoi.profile {
},
delegation_scope = yoi.scope.workspace_write(),
}
})
+2 -2
View File
@@ -1,4 +1,4 @@
return yoi.profile {
return yoi.profile.extend("builtin:default", {
slug = "reviewer",
description = "Reviewer role profile with bundled reusable policy",
@@ -12,4 +12,4 @@ return yoi.profile {
ticket = { enabled = false, access = "lifecycle" },
ticket_orchestration = { enabled = false },
},
}
})