mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-18 09:52:35 +00:00
24 lines
515 B
JavaScript
24 lines
515 B
JavaScript
module.exports = {
|
|
branchPrefix: 'test-renovate/',
|
|
dryRun: true,
|
|
gitAuthor: 'Renovate Bot <bot@renovateapp.com>',
|
|
logLevel: 'debug',
|
|
onboarding: false,
|
|
platform: 'github',
|
|
repositories: ['renovatebot/github-action'],
|
|
packageRules: [
|
|
{
|
|
description: 'lockFileMaintenance',
|
|
updateTypes: [
|
|
'pin',
|
|
'digest',
|
|
'patch',
|
|
'minor',
|
|
'major',
|
|
'lockFileMaintenance',
|
|
],
|
|
masterIssueApproval: false,
|
|
stabilityDays: 0,
|
|
},
|
|
],
|
|
};
|