Skip to content

Commit c273266

Browse files
authored
fix(types): RenovateRepository not inheriting RenovateConfig (#40897)
1 parent acc1d3d commit c273266

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/config/types.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,11 +305,9 @@ export type UpdateConfig<
305305

306306
export type RenovateRepository =
307307
| string
308-
| {
308+
| (RenovateConfig & {
309309
repository: string;
310-
secrets?: Record<string, string>;
311-
variables?: Record<string, string>;
312-
};
310+
});
313311

314312
export type UseBaseBranchConfigType = 'merge' | 'none';
315313
export type ConstraintsFilter = 'strict' | 'none';

0 commit comments

Comments
 (0)