Skip to content
Snippets Groups Projects
Unverified Commit 300a9987 authored by RahulGautamSingh's avatar RahulGautamSingh Committed by GitHub
Browse files

fix(config-migration): prevent diff check (#31443)

parent 65b867ab
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message: 'Migrate config renovate.json',
platformCommit: 'auto',
force: true,
});
});
......@@ -74,6 +75,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message,
platformCommit: 'auto',
force: true,
});
});
......@@ -98,6 +100,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message,
platformCommit: 'auto',
force: true,
});
});
});
......@@ -123,6 +126,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message,
platformCommit: 'auto',
force: true,
});
});
});
......@@ -149,6 +153,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message,
platformCommit: 'auto',
force: true,
});
});
......@@ -174,6 +179,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message,
platformCommit: 'auto',
force: true,
});
});
});
......
......@@ -43,5 +43,6 @@ export async function createConfigMigrationBranch(
],
message: commitMessage.toString(),
platformCommit: config.platformCommit,
force: true,
});
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment