mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
29 lines
568 B
JavaScript
29 lines
568 B
JavaScript
const appName = 'Renovate';
|
|
|
|
const appSlug = 'renovate';
|
|
|
|
const configFileNames = [
|
|
'renovate.json',
|
|
'.github/renovate.json',
|
|
'.renovaterc',
|
|
'.renovaterc.json',
|
|
'package.json',
|
|
];
|
|
|
|
const onboardingBranch = 'renovate/configure';
|
|
const onboardingPrTitle = 'Configure Renovate';
|
|
|
|
const urls = {
|
|
documentation: 'https://renovatebot.com/docs/',
|
|
help: 'https://github.com/renovatebot/config-help/issues',
|
|
homepage: 'https://renovatebot.com',
|
|
};
|
|
|
|
module.exports = {
|
|
appName,
|
|
appSlug,
|
|
configFileNames,
|
|
onboardingBranch,
|
|
onboardingPrTitle,
|
|
urls,
|
|
};
|