mirror of https://github.com/renovatebot/renovate
13 lines
382 B
TypeScript
13 lines
382 B
TypeScript
import { AbstractMigration } from '../base/abstract-migration';
|
|
|
|
export class AzureGitLabAutomergeMigration extends AbstractMigration {
|
|
override readonly deprecated = true;
|
|
override readonly propertyName = /^azureAutoComplete$|^gitLabAutomerge$/;
|
|
|
|
override run(value: unknown): void {
|
|
if (value !== undefined) {
|
|
this.setHard('platformAutomerge', value);
|
|
}
|
|
}
|
|
}
|