mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-12 23:51:55 +00:00

Co-authored-by: Sebastian Poxhofer <secustor@users.noreply.github.com> Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-authored-by: Rhys Arkins <rhys@arkins.net>
16 lines
541 B
TypeScript
16 lines
541 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GoDatasource } from '../../datasource/go';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { bumpPackageVersion } from './update';
|
|
|
|
export const displayName = 'OpenTelemetry Collector Builder (ocb)';
|
|
export const url =
|
|
'https://github.com/open-telemetry/opentelemetry-collector/tree/main/cmd/builder';
|
|
export const categories: Category[] = ['golang'];
|
|
|
|
export const defaultConfig = {
|
|
managerFilePatterns: [],
|
|
};
|
|
|
|
export const supportedDatasources = [GoDatasource.id];
|