export interface IConfigSemanticRelease {
    developBranch?: string;
    isBackmergeEnabled?: boolean;
    isEnabled?: boolean;
    isPrereleaseEnabled?: boolean;
    mainBranch?: string;
    preReleaseBranch?: string;
    preReleaseChannel?: string;
    repositoryUrl?: string;
}
