Skip to content

Commit

Permalink
refactor(changelog/github): move source (#23103)
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy authored Jul 3, 2023
1 parent 0551a12 commit bd3cf10
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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 { GitHubChangeLogSource } from './github/source';
import { GitLabChangeLogSource } from './gitlab/source';
import type { ChangeLogSource } from './source';
import { GitHubChangeLogSource } from './source-github';

const api = new Map<string, ChangeLogSource>();
export default api;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import URL from 'node:url';
import { GlobalConfig } from '../../../../../config/global';
import { logger } from '../../../../../logger';
import * as hostRules from '../../../../../util/host-rules';
import type { BranchUpgradeConfig } from '../../../../types';
import { ChangeLogSource } from './source';
import type { ChangeLogError } from './types';
import { GlobalConfig } from '../../../../../../config/global';
import { logger } from '../../../../../../logger';
import * as hostRules from '../../../../../../util/host-rules';
import type { BranchUpgradeConfig } from '../../../../../types';
import { ChangeLogSource } from '../source';
import type { ChangeLogError } from '../types';
export class GitHubChangeLogSource extends ChangeLogSource {
constructor() {
super('github', 'github-tags');
Expand Down

0 comments on commit bd3cf10

Please sign in to comment.