diff --git a/lib/workers/repository/update/pr/changelog/api.ts b/lib/workers/repository/update/pr/changelog/api.ts index e3199703303f4d30f10b26ff464e722a87049117..3abff281931f370eee073d16364809f5b810ecaf 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 { 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; diff --git a/lib/workers/repository/update/pr/changelog/source-github.ts b/lib/workers/repository/update/pr/changelog/github/source.ts similarity index 86% rename from lib/workers/repository/update/pr/changelog/source-github.ts rename to lib/workers/repository/update/pr/changelog/github/source.ts index 0fb7bfc0fe9d9fa0ea8c4f8ae732c1e0830d8f04..af62ea1e2b69f2d531dad23f30f3c2265676ecfc 100644 --- a/lib/workers/repository/update/pr/changelog/source-github.ts +++ b/lib/workers/repository/update/pr/changelog/github/source.ts @@ -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');