github-pr-automation
Version:
MCP server and CLI for automated GitHub PR management, review resolution, and workflow optimization
12 lines • 504 B
JavaScript
import { z } from "zod";
import { PRIdentifierStringSchema } from "../../utils/validation.js";
export const ManageStackedPRsSchema = z.object({
base_pr: PRIdentifierStringSchema,
dependent_pr: PRIdentifierStringSchema,
auto_fix: z.boolean().default(true),
use_onto: z.boolean().optional(),
onto_base: z.string().optional(),
max_iterations: z.number().int().min(1).default(3),
cursor: z.string().optional(), // MCP cursor-based pagination
});
//# sourceMappingURL=schema.js.map