diff --git a/lib/workers/repository/update/pr/changelog/api.ts b/lib/workers/repository/update/pr/changelog/api.ts index d4fa3edb6da822..e3199703303f4d 100644 --- a/lib/workers/repository/update/pr/changelog/api.ts +++ b/lib/workers/repository/update/pr/changelog/api.ts @@ -1,7 +1,7 @@ import { BitbucketChangeLogSource } from './bitbucket/source'; +import { GitLabChangeLogSource } from './gitlab/source'; import type { ChangeLogSource } from './source'; import { GitHubChangeLogSource } from './source-github'; -import { GitLabChangeLogSource } from './source-gitlab'; const api = new Map(); export default api; diff --git a/lib/workers/repository/update/pr/changelog/source-gitlab.ts b/lib/workers/repository/update/pr/changelog/gitlab/source.ts similarity index 79% rename from lib/workers/repository/update/pr/changelog/source-gitlab.ts rename to lib/workers/repository/update/pr/changelog/gitlab/source.ts index 4279dc1dfd6574..4dc86c3b996a72 100644 --- a/lib/workers/repository/update/pr/changelog/source-gitlab.ts +++ b/lib/workers/repository/update/pr/changelog/gitlab/source.ts @@ -1,5 +1,5 @@ -import type { BranchUpgradeConfig } from '../../../../types'; -import { ChangeLogSource } from './source'; +import type { BranchUpgradeConfig } from '../../../../../types'; +import { ChangeLogSource } from '../source'; export class GitLabChangeLogSource extends ChangeLogSource { constructor() {