Skip to content
Snippets Groups Projects
Unverified Commit bd3cf102 authored by Adam Setch's avatar Adam Setch Committed by GitHub
Browse files

refactor(changelog/github): move source (#23103)

parent 0551a12f
Loading
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;
......
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');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment