mirror of https://github.com/renovatebot/renovate
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
import { AbstractMigration } from '../base/abstract-migration';
|
|
|
|
export class RequiredStatusChecksMigration extends AbstractMigration {
|
|
override readonly deprecated = true;
|
|
override readonly propertyName = 'requiredStatusChecks';
|
|
|
|
override run(value: unknown): void {
|
|
if (value === null) {
|
|
this.setSafely('ignoreTests', true);
|
|
}
|
|
}
|
|
}
|