@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
22 lines (21 loc) • 380 B
text/typescript
export type AgentConfig = {
type: "claude";
agentUser?: {
username: string;
userId: string;
};
reviews?: {
/**
* usernames that the agent should review merge requests for.
* Defaults to agentUser
*/
byUser?:
| Record<
string,
{
automatic: boolean;
}
>
| "all-automatic";
};
};