Files
przeprogramowani d21ba2dfbd fix(release): skip unrebased PRs in trusted version preparation (#49)
Master push enumerated every open PR and failed Prepare version when
the PR had not integrated current master. Classify that as a branch
update, write no record, and continue so unrelated open PRs cannot
turn the trusted writer red.

Co-authored-by: Claude <noreply@anthropic.com>
2026-09-16 15:56:28 +02:00

7 lines
398 B
TypeScript

export class BranchUpdateRequiredError extends Error {}
export function stableVersion(value: unknown): boolean;
export function calculateVersion(input: any): Promise<any>;
export function packageWithVersion(text: string, version: string): string;
export function packageFilesChanged(cwd: string, from: string, to: string): boolean;
export function validateBaseline(baseline: any, input: any): any;