mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
30 lines
568 B
JavaScript
30 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,
|
||
|
};
|