Skip to content

Commit

Permalink
fix(config-migration): prevent diff check (#31443)
Browse files Browse the repository at this point in the history
  • Loading branch information
RahulGautamSingh committed Sep 17, 2024
1 parent 65b867a commit 300a998
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/workers/repository/config-migration/branch/create.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message: 'Migrate config renovate.json',
platformCommit: 'auto',
force: true,
});
});

Expand All @@ -74,6 +75,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message,
platformCommit: 'auto',
force: true,
});
});

Expand All @@ -98,6 +100,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message,
platformCommit: 'auto',
force: true,
});
});
});
Expand All @@ -123,6 +126,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message,
platformCommit: 'auto',
force: true,
});
});
});
Expand All @@ -149,6 +153,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message,
platformCommit: 'auto',
force: true,
});
});

Expand All @@ -174,6 +179,7 @@ describe('workers/repository/config-migration/branch/create', () => {
],
message,
platformCommit: 'auto',
force: true,
});
});
});
Expand Down
1 change: 1 addition & 0 deletions lib/workers/repository/config-migration/branch/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ export async function createConfigMigrationBranch(
],
message: commitMessage.toString(),
platformCommit: config.platformCommit,
force: true,
});
}

0 comments on commit 300a998

Please sign in to comment.