Skip to content

Commit

Permalink
refactor(changelog/gitlab): move source (#23104)
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy authored Jul 3, 2023
1 parent 42dceca commit b70cd1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/workers/repository/update/pr/changelog/api.ts
Original file line number Diff line number Diff line change
@@ -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<string, ChangeLogSource>();
export default api;
Expand Down
Original file line number Diff line number Diff line change
@@ -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() {
Expand Down

0 comments on commit b70cd1c

Please sign in to comment.