renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
11 lines (10 loc) • 382 B
TypeScript
import type { BranchConfig, BranchResult, PrBlockedBy } from '../../../types';
export interface ProcessBranchResult {
branchExists: boolean;
updatesVerified?: boolean;
prBlockedBy?: PrBlockedBy;
prNo?: number;
result: BranchResult;
commitSha?: string | null;
}
export declare function processBranch(branchConfig: BranchConfig): Promise<ProcessBranchResult>;