post-merge
Version:
A reusable library for handling post-merge operations including version bumping and git tagging
17 lines • 512 B
TypeScript
import { PostMergeConfig, HotfixResult } from './types';
/**
* Main class for handling hotfix post-merge operations
*/
export declare class PostMergeHandler {
private config;
constructor(config?: PostMergeConfig);
/**
* Executes the complete hotfix post-merge process
*/
execute(): Promise<HotfixResult>;
/**
* Static method to check if current CI environment matches hotfix criteria
*/
static shouldExecute(): boolean;
}
//# sourceMappingURL=hotfix-handler.d.ts.map