renovate/lib/config/migrations/custom/branch-prefix-migration.ts

15 lines
500 B
TypeScript

import is from '@sindresorhus/is';
import { AbstractMigration } from '../base/abstract-migration';
export class BranchPrefixMigration extends AbstractMigration {
override readonly propertyName = 'branchPrefix';
override run(value: unknown): void {
if (is.string(value) && value.includes('{{')) {
const templateIndex = value.indexOf(`{{`);
this.rewrite(value.substring(0, templateIndex));
this.setHard('additionalBranchPrefix', value.substring(templateIndex));
}
}
}