mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
12 lines
425 B
TypeScript
12 lines
425 B
TypeScript
import { extractPackageFile } from './extract';
|
|
import { updateDependency } from './update';
|
|
|
|
export { extractPackageFile, updateDependency };
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['buildkite\\.ya?ml', '\\.buildkite/.+\\.ya?ml$'],
|
|
commitMessageTopic: 'buildkite plugin {{depName}}',
|
|
commitMessageExtra:
|
|
'to {{#if isMajor}}v{{{newMajor}}}{{else}}{{{newValue}}}{{/if}}',
|
|
managerBranchPrefix: 'buildkite-',
|
|
};
|