mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-18 01:42:34 +00:00
26 lines
529 B
JavaScript
26 lines
529 B
JavaScript
module.exports = {
|
|
branchPrefix: 'ga-renovate/',
|
|
dryRun: true,
|
|
gitAuthor: 'Renovate Bot <bot@renovateapp.com>',
|
|
logLevel: 'debug',
|
|
onboarding: false,
|
|
platform: 'github',
|
|
repositories: ['renovatebot/github-action'],
|
|
printConfig: true,
|
|
lockFileMaintenance: {
|
|
enabled: true,
|
|
schedule: null,
|
|
},
|
|
packageRules: [
|
|
{
|
|
packagePattern: '.*',
|
|
schedule: null,
|
|
lockFileMaintenance: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
],
|
|
force: {
|
|
lockFileMaintenance: { enabled: true },
|
|
},
|
|
};
|